-
Notifications
You must be signed in to change notification settings - Fork 116
Expand file tree
/
Copy pathtsconfig.base.json
More file actions
34 lines (34 loc) · 963 Bytes
/
tsconfig.base.json
File metadata and controls
34 lines (34 loc) · 963 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
32
33
34
{
"compilerOptions": {
"target": "es2017",
"lib": [
"ES2017",
// DOM for the fetch and streams API
"DOM",
// ES2018.AsyncIterable for AsyncIterator
"ES2018.AsyncIterable"
],
"declaration": true,
// We don't have dependencies that require interop
"esModuleInterop": false,
// As strict as possible
"strict": true,
"forceConsistentCasingInFileNames": true,
"noImplicitAny": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"strictBindCallApply": true,
"strictPropertyInitialization": true,
"noImplicitThis": true,
"useUnknownInCatchVariables": true,
"noUnusedLocals": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"noImplicitOverride": true,
// We're building with Node16 module resolution
"moduleResolution": "Node16",
"module": "Node16",
"verbatimModuleSyntax": true,
"skipLibCheck": false
}
}