-
Notifications
You must be signed in to change notification settings - Fork 17
/
tsconfig.json
32 lines (29 loc) · 1.18 KB
/
tsconfig.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
{
"compilerOptions": {
"outDir": "./build/",
"sourceMap": true,
"module": "commonjs",
"target": "ES6",
"skipLibCheck": true,
"strict": true, // enable all strict rules, unless they are explicitely disabled (below). there should not be any of such exceptions.
"noImplicitAny": false, // temporirly disabled, should fix code and remove this line
"noImplicitThis": false, // temporirly disabled, should fix code and remove this line
"strictNullChecks": false, // temporirly disabled, should fix code and remove this line
"strictPropertyInitialization": false, // temporirly disabled, should fix code and remove this line
"noFallthroughCasesInSwitch": true,
"noUncheckedIndexedAccess": true,
"noPropertyAccessFromIndexSignature": true,
"noImplicitReturns": true,
/// noUnusedLocals and noUnusedParameters are too restrictive (no way to add exceptions) so they should be checked by the eslint
"esModuleInterop": true,
//"skipLibCheck": true,
//"forceConsistentCasingInFileNames": true
"jsx": "react",
"allowJs": true
},
"exclude": [
"bebras-modules",
"build",
],
"$schema": "https://json.schemastore.org/tsconfig"
}