-
Notifications
You must be signed in to change notification settings - Fork 62
Expand file tree
/
Copy pathtsconfig.eslint.json
More file actions
31 lines (31 loc) · 894 Bytes
/
tsconfig.eslint.json
File metadata and controls
31 lines (31 loc) · 894 Bytes
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
{
"compilerOptions": {
"target": "esnext",
"lib": ["esnext", "dom"],
"allowJs": true,
"module": "esnext",
"strict": true,
"moduleResolution": "node",
"isolatedModules": false,
"removeComments": false,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": false,
"experimentalDecorators": true,
"noImplicitAny": false,
"noUnusedParameters": false,
"noImplicitReturns": true,
"noImplicitThis": true,
"noUnusedLocals": false,
"skipLibCheck": false,
"strictNullChecks": false,
"suppressImplicitAnyIndexErrors": true,
"downlevelIteration": true,
"importHelpers": true,
"sourceMap": false,
"checkJs": false,
},
"exclude": ["node_modules"],
"compileOnSave": false,
"include": ["**/**.ts", "**/**.tsx", "**/**.js", "**/**/**/*.ts","**/**/**/*.jsx"],
}