-
-
Notifications
You must be signed in to change notification settings - Fork 43
Expand file tree
/
Copy pathtsconfig.base.json
More file actions
28 lines (28 loc) · 707 Bytes
/
tsconfig.base.json
File metadata and controls
28 lines (28 loc) · 707 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
{
"compilerOptions": {
"module": "esnext",
"moduleResolution": "bundler",
"target": "es2021",
"lib": ["es2021", "dom"],
"types": ["node"],
"typeRoots": ["./node_modules/@types"],
"pretty": true,
"importHelpers": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"isolatedDeclarations": true,
"isolatedModules": true,
"noImplicitReturns": true,
"rootDir": ".",
"sourceMap": true,
"composite": true,
"declaration": true,
"declarationMap": true,
"noEmitOnError": true,
"skipLibCheck": true,
"preserveConstEnums": true,
"stripInternal": true,
"strict": true,
"verbatimModuleSyntax": true
}
}