mirror of
https://github.com/iconify/iconify.git
synced 2024-11-10 07:11:00 +00:00
18 lines
248 B
JavaScript
18 lines
248 B
JavaScript
|
module.exports = {
|
||
|
root: true,
|
||
|
env: {
|
||
|
browser: true,
|
||
|
jest: true,
|
||
|
es6: true,
|
||
|
},
|
||
|
settings: {
|
||
|
'import/resolver': {
|
||
|
node: {
|
||
|
extensions: ['.js'],
|
||
|
},
|
||
|
},
|
||
|
'import/extensions': ['.js'],
|
||
|
},
|
||
|
extends: ['plugin:vue/recommended'],
|
||
|
};
|