-
Notifications
You must be signed in to change notification settings - Fork 9
/
tsconfig.json
44 lines (44 loc) · 1.03 KB
/
tsconfig.json
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
{
"extends": "./tsconfig-google.json",
"compilerOptions": {
"target": "ES2022",
"lib": [
"ES2022",
"dom"
],
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"moduleDetection": "force",
"importsNotUsedAsValues": "remove",
"module": "NodeNext",
"moduleResolution": "NodeNext",
"types": [
"node",
"mocha",
"reflect-metadata"
],
"sourceMap": true,
"outDir": "dist",
"removeComments": false,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": false, // TODO: set to true (which is default), fix a few issues as often as possible, until we can leave true
"noImplicitReturns": true,
"skipLibCheck": true
},
"include": [
"src",
"version.ts",
"solo.ts",
"test"
],
"ts-node": {
"esm": true,
"experimentalResolver": true,
"showConfig": true,
"compilerHost": true,
"emit": true,
"experimentalSpecifierResolution": "node"
}
}