1 | {
|
2 | "root": true,
|
3 | "parser": "@typescript-eslint/parser",
|
4 | "plugins": ["@typescript-eslint"],
|
5 | "extends": [
|
6 | "eslint:recommended",
|
7 | "plugin:@typescript-eslint/recommended",
|
8 | "prettier"
|
9 | ],
|
10 | "env": {
|
11 | "node": true,
|
12 | "es6": true
|
13 | },
|
14 | "parserOptions": {
|
15 | "sourceType": "module",
|
16 | "project": "./tsconfig.json",
|
17 | "ecmaVersion": 2020
|
18 | },
|
19 | "rules": {
|
20 | "prefer-const": 0
|
21 | }
|
22 | }
|