-
-
Notifications
You must be signed in to change notification settings - Fork 64
Expand file tree
/
Copy pathtsconfig.json
More file actions
37 lines (37 loc) · 813 Bytes
/
Copy pathtsconfig.json
File metadata and controls
37 lines (37 loc) · 813 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
{
"compilerOptions": {
"target": "es2022",
"lib": [
"es2022"
],
"module": "commonjs",
"outDir": "out",
"importHelpers": true,
"sourceMap": true,
"alwaysStrict": true,
"strict": true,
"noImplicitAny": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true,
"noImplicitOverride": true,
"removeComments": true,
"skipLibCheck": true,
"experimentalDecorators": true,
"useUnknownInCatchVariables": false,
"allowSyntheticDefaultImports": true,
"typeRoots": [
"node_modules/@types",
"src/@types"
]
},
"include": [
"src/main.ts",
"test/**/*.ts"
],
"exclude": [
"test/disabled_TODO"
] //TODO:future
}