21 lines
478 B
JavaScript
21 lines
478 B
JavaScript
module.exports = {
|
|
root: true,
|
|
env: {
|
|
"browser": true,
|
|
"es6": true
|
|
},
|
|
extends: [
|
|
"plugin:@typescript-eslint/recommended",
|
|
"plugin:@typescript-eslint/recommended-requiring-type-checking",
|
|
],
|
|
parser: '@typescript-eslint/parser',
|
|
parserOptions: {
|
|
"ecmaVersion": 2020,
|
|
"sourceType": "module",
|
|
"project": "./tsconfig.json"
|
|
},
|
|
plugins: [
|
|
'@typescript-eslint',
|
|
],
|
|
rules: {}
|
|
};
|