-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathtsconfig.base.json
More file actions
38 lines (33 loc) · 995 Bytes
/
tsconfig.base.json
File metadata and controls
38 lines (33 loc) · 995 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
// https://www.typescriptlang.org/tsconfig
{
// https://github.com/tsconfig/bases/blob/main/bases/strictest.json
"extends": "@tsconfig/strictest/tsconfig.json",
"compilerOptions": {
// Modules
"allowImportingTsExtensions": true,
"module": "ESNext",
"moduleResolution": "Bundler",
"resolveJsonModule": true,
// "module": "NodeNext",
// "moduleResolution": "NodeNext",
// Emit
// "noEmit": true,
"declaration": true,
"declarationMap": true,
"emitDeclarationOnly": true,
"noEmitOnError": true,
// JavaScript Support
"allowJs": true,
"checkJs": false,
// Interop Constraints
"verbatimModuleSyntax": false,
// "preserveSymlinks": true,
// Language and Environment
"lib": ["DOM", "DOM.Iterable", "ESNext"], // https://github.com/DefinitelyTyped/DefinitelyTyped/issues/19799
"target": "ESNext",
// Projects
"composite": true,
"incremental": true
},
"exclude": ["node_modules", "dist"]
}