-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
45 lines (45 loc) · 1.42 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
{
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"allowUnreachableCode": false,
"alwaysStrict": true,
"baseUrl": "./",
"composite": true,
"declaration": true,
"declarationMap": true,
"emitDecoratorMetadata": true,
"esModuleInterop": true,
"experimentalDecorators": true,
"forceConsistentCasingInFileNames": true,
"incremental": true,
"lib": ["ESNext"],
"module": "CommonJS",
"moduleResolution": "Node",
"noFallthroughCasesInSwitch": false,
"noImplicitAny": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"paths": {
"@app/configs": ["src/configs"],
"@app/constants": ["src/constants"],
"@app/enums": ["src/enums"],
"@app/types": ["src/types"],
"@app/utils/*": ["src/utils/*"],
"@test/credentials/*": ["test/credentials/*"],
"@test/data/*": ["test/data/*"],
"@test/helpers/*": ["test/helpers/*"]
},
"removeComments": false,
"resolveJsonModule": true,
"skipLibCheck": true,
"sourceMap": true,
"strict": false,
"strictBindCallApply": false,
"strictNullChecks": true,
"strictPropertyInitialization": false,
"target": "ES5"
},
"ts-node": {
"require": ["tsconfig-paths/register"]
}
}