-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
executable file
·55 lines (55 loc) · 1.12 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
45
46
47
48
49
50
51
52
53
54
55
{
"compileOnSave": true,
"ts-node": {
"compilerOptions": {
"module": "Node16"
}
},
"compilerOptions": {
"lib": [
"ES2020"
],
"target": "ES2020",
"noImplicitAny": false,
"importHelpers": true,
"downlevelIteration": true,
"outDir": "lib",
"stripInternal": true,
"inlineSources": false,
"inlineSourceMap": false,
"forceConsistentCasingInFileNames": true,
"strictNullChecks": false,
"skipLibCheck": true,
"alwaysStrict": false,
"allowJs": true,
"moduleResolution": "Node16",
"module": "Node16",
"newLine": "LF",
"pretty": false,
"removeComments": false,
"sourceMap": true,
"noImplicitReturns": true,
"noUnusedLocals": false,
"strict": true,
"declaration": true,
"esModuleInterop": true,
"typeRoots": [
"node_modules/@types"
],
"rootDir": "src",
"baseUrl": "./",
"allowSyntheticDefaultImports": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"types": [
"node"
]
},
"include": [
"src"
],
"exclude": [
"node_modules",
"lib"
]
}