-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
99 lines (99 loc) · 2.31 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"compilerOptions": {
"target": "ES2016",
"lib": [
"esNext",
"es2022",
"es2016"
],
"experimentalDecorators": true,
"useDefineForClassFields": true,
"moduleDetection": "auto",
"module": "ESNext",
"rootDir": "src/",
"moduleResolution": "node",
"baseUrl": ".",
"typeRoots": [
"express",
"mongodb",
"dist/"
],
"types": [
"@types/node",
],
"allowUmdGlobalAccess": true,
"resolveJsonModule": true,
"allowJs": false,
"checkJs": false,
"declaration": true,
"declarationMap": true,
"declarationDir": "dist/",
"outDir": "dist/",
"removeComments": true,
"noEmit": false,
"allowImportingTsExtensions": false,
"importHelpers": true,
"downlevelIteration": true,
"sourceRoot": "src/",
"inlineSourceMap": true,
"inlineSources": true,
"noEmitOnError": false,
"preserveConstEnums": true,
"isolatedModules": true,
"esModuleInterop": true,
"preserveSymlinks": true,
"forceConsistentCasingInFileNames": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"noImplicitAny": false,
"strictNullChecks": false,
"strictPropertyInitialization": false,
"strictFunctionTypes": false,
"noImplicitThis": true,
"useUnknownInCatchVariables": true,
"alwaysStrict": false,
"noUnusedLocals": false,
"noUnusedParameters": false,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"noUncheckedIndexedAccess": false,
"noImplicitOverride": true,
"noPropertyAccessFromIndexSignature": true,
"allowUnusedLabels": true,
"allowUnreachableCode": true,
"skipDefaultLibCheck": false,
"skipLibCheck": true,
"rootDirs": [
"src/",
"bin/"
],
"diagnostics": true,
"emitDecoratorMetadata": true,
"extendedDiagnostics": true,
},
"compileOnSave": true,
"buildOptions": {
"verbose": true,
"suppressImplicitAnyIndexErrors": true
},
"typeAcquisition": {
"include": [
"typescript",
"llama.native.js",
"socket.io",
"tslib"
],
"enable": true
},
"exclude": [
"./tsconfig.json",
"./package.json",
"./bin/**/*",
"./dist/**/*",
"./api/**/*",
"./public/**/*",
"./docs/**/*",
"./node_modules/**/*",
"./types/**/*"
]
}