-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.json
38 lines (38 loc) · 846 Bytes
/
.eslintrc.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"root": true,
"extends": ["@webdeveric/eslint-config-ts", "plugin:import/recommended", "plugin:import/typescript", "prettier"],
"env": {
"browser": false,
"es6": true,
"node": true
},
"settings": {
"import/extensions": [".ts", ".mts", ".cts", ".js", ".json"],
"import/resolver": {
"typescript": {
"project": "./tsconfig.json"
},
"node": {
"extensions": [".js", ".ts", ".mts", ".cts"]
}
},
"import/parsers": {
"@typescript-eslint/parser": [".ts", ".mts", ".cts"]
}
},
"rules": {},
"overrides": [
{
"files": ["*.ts"],
"parserOptions": {
"project": ["./tsconfig.json"]
}
},
{
"files": ["./*.{js,cjs,mjs,mts}"],
"parserOptions": {
"project": ["./tsconfig.project-files.json"]
}
}
]
}