-
-
Notifications
You must be signed in to change notification settings - Fork 187
Expand file tree
/
Copy pathtsconfig.base.json
More file actions
24 lines (24 loc) · 653 Bytes
/
tsconfig.base.json
File metadata and controls
24 lines (24 loc) · 653 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
{
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"declaration": true,
"emitDecoratorMetadata": true,
"esModuleInterop": true,
"experimentalDecorators": true,
"lib": ["ES2022", "esnext.asynciterable"],
"module": "NodeNext",
"moduleResolution": "NodeNext",
"noEmitOnError": false,
"noUnusedLocals": true,
"noUnusedParameters": true,
"pretty": true,
"removeComments": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"sourceMap": true,
"strict": true,
"target": "ES2022",
"verbatimModuleSyntax": true
},
"exclude": ["dist", "node_modules", "test/types"]
}