-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
41 lines (38 loc) · 966 Bytes
/
tsconfig.json
File metadata and controls
41 lines (38 loc) · 966 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
35
36
37
38
39
40
41
{
"compilerOptions": {
// Enable latest features
"lib": [
"ESNext.AsyncIterable",
"ESNext",
"DOM",
"DOM.Iterable",
"DOM.AsyncIterable",
"WebWorker.ImportScripts",
"Webworker.Iterable",
"WebWorker.AsyncIterable"
],
"target": "ESNext",
// Module
"module": "Preserve",
"moduleDetection": "force",
"resolveJsonModule": true,
"isolatedModules": true,
"moduleResolution": "Bundler",
"allowImportingTsExtensions": true,
"verbatimModuleSyntax": true,
// Best practices
"strict": true,
"skipLibCheck": true,
"noUnusedLocals": false,
"noImplicitAny": true,
"noImplicitOverride": true,
"noImplicitThis": true,
"noUnusedParameters": false,
"noFallthroughCasesInSwitch": true,
"noPropertyAccessFromIndexSignature": false,
// Declaration
"declaration": true,
"isolatedDeclarations": true,
"emitDeclarationOnly": true
}
}