-
Notifications
You must be signed in to change notification settings - Fork 53
/
tsconfig.json
34 lines (34 loc) · 1.06 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
33
34
{
"compilerOptions": {
"alwaysStrict": true,
"declaration": true,
"declarationMap": true,
"downlevelIteration": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"inlineSourceMap": false,
"lib": ["DOM", "ES2019", "ES5", "ES6", "ES2020.Promise", "ESNext.AsyncIterable", "ES2019.Array"],
"module": "CommonJS",
"moduleResolution": "Node",
"noEmitOnError": false,
"noFallthroughCasesInSwitch": true,
"noImplicitAny": false,
"noImplicitReturns": true,
"noImplicitThis": true,
"noUnusedLocals": false,
"noUnusedParameters": false,
"resolveJsonModule": true,
"skipLibCheck": true,
"strict": false, // FIXME: turn off temporarily after bumping up the TS version
"strictBindCallApply": true,
"strictFunctionTypes": false,
"strictNullChecks": true,
"strictPropertyInitialization": false,
"target": "ES2018",
"useDefineForClassFields": true,
"outDir": "out",
"rootDir": ".",
"sourceMap": true
},
"exclude": ["node_modules", ".vscode-test", "out"]
}