-
-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathtsconfig.base.json
More file actions
47 lines (43 loc) · 1016 Bytes
/
tsconfig.base.json
File metadata and controls
47 lines (43 loc) · 1016 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
42
43
44
45
46
47
{
"$schema": "https://json.schemastore.org/tsconfig",
"compilerOptions": {
"target": "es2024",
"lib": [
"es2024",
"DOM",
"DOM.AsyncIterable",
"DOM.Iterable",
"ESNext.Array",
"ESNext.Collection",
"ESNext.Error",
"ESNext.Iterator",
"ESNext.Promise"
],
"module": "node20",
"moduleResolution": "node16",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"verbatimModuleSyntax": true,
"erasableSyntaxOnly": true,
"rewriteRelativeImportExtensions": true,
"declarationMap": true,
"emitDeclarationOnly": true,
"sourceMap": true,
"composite": true,
"noUnusedLocals": false,
"noUnusedParameters": false,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"jsx": "preserve",
"rootDir": "${configDir}/src",
"outDir": "${configDir}/dist"
},
"exclude": [
"dist",
"node_modules",
"**/__tests__",
"**/__mocks__",
"**/*.test.*"
]
}