27 lines
498 B
JavaScript
27 lines
498 B
JavaScript
|
module.exports = {
|
||
|
env: {
|
||
|
browser: true,
|
||
|
es2021: true
|
||
|
},
|
||
|
overrides: [
|
||
|
],
|
||
|
parserOptions: {
|
||
|
ecmaVersion: 'latest',
|
||
|
sourceType: 'module',
|
||
|
project: 'tsconfig.json'
|
||
|
},
|
||
|
plugins: [ ],
|
||
|
rules: {
|
||
|
indent: ['error', 4, { SwitchCase: 1 }],
|
||
|
},
|
||
|
settings: {
|
||
|
'import/resolver': {
|
||
|
typescript: {
|
||
|
project: [
|
||
|
'tsconfig.json'
|
||
|
]
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|