-
-
Notifications
You must be signed in to change notification settings - Fork 217
Expand file tree
/
Copy pathtsconfig.json
More file actions
29 lines (29 loc) · 694 Bytes
/
tsconfig.json
File metadata and controls
29 lines (29 loc) · 694 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
{
"root": true,
"compilerOptions": {
"allowJs": false,
"target": "ES2019",
"declaration": true,
"module": "commonjs",
"moduleResolution": "node",
"forceConsistentCasingInFileNames": true,
"strictPropertyInitialization": false, // TODO
"strict": true,
"strictNullChecks": true,
"noImplicitAny": true,
"noImplicitReturns": true,
"noImplicitThis": true,
// eslint already warns about:
"noUnusedLocals": false,
"noUnusedParameters": false,
"incremental": true,
"sourceMap": true,
"esModuleInterop": true,
"lib": [
"ES2019",
// only used in tests
"ES2021.WeakRef"
]
},
"compileOnSave": true
}