-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
57 lines (56 loc) · 1.36 KB
/
tsconfig.json
File metadata and controls
57 lines (56 loc) · 1.36 KB
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
// {
// "compilerOptions": {
// "module": "commonjs",
// "esModuleInterop": true,
// "target": "es6",
// "noImplicitAny": true,
// "moduleResolution": "node",
// "sourceMap": true,
// "outDir": "./dist",
// "baseUrl": ".",
// "paths": {
// "*": [
// "node_modules/*"
// ]
// },
// "strict": true
// },
// "include": [
// "./src/**/*"
// ]
// // "typeRoots": ["./src/typings/Express.d.ts", "./node_modules/@types"]
// // "files": ["./src/typings/Express.d.ts"]
// }
{
"ts-node": {
"files": true
},
"compilerOptions": {
"incremental": false,
"target": "esnext",
"lib": [
"ESNext",
"ESNext.Promise",
"ESNext.AsyncIterable"
],
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"module": "CommonJS",
"rootDir": "src",
"resolveJsonModule": true,
"moduleResolution": "node",
"outDir": "dist",
"removeComments": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"noImplicitAny": false,
"strictNullChecks": false,
"noImplicitThis": true,
"useUnknownInCatchVariables": true,
"alwaysStrict": true,
"skipDefaultLibCheck": true,
"skipLibCheck": true
}
}