16 строки
354 B
JavaScript
16 строки
354 B
JavaScript
|
module.exports = {
|
||
|
root: true,
|
||
|
env: {
|
||
|
browser: true,
|
||
|
es2021: true,
|
||
|
},
|
||
|
extends: ["eslint:recommended", "plugin:@typescript-eslint/recommended"],
|
||
|
parser: "@typescript-eslint/parser",
|
||
|
parserOptions: {
|
||
|
ecmaVersion: 12,
|
||
|
sourceType: "module",
|
||
|
},
|
||
|
plugins: ["@typescript-eslint"],
|
||
|
rules: {},
|
||
|
}
|