-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathtsconfig.json
44 lines (44 loc) · 1.23 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
/* TSConfig Reference https://www.typescriptlang.org/tsconfig */
{
/* File Inclusion */
"include": ["src", "@types"],
"exclude": ["dist", "node_modules"],
"compilerOptions": {
/* Project Options */
"target": "ESNext",
"module": "CommonJS",
"importHelpers": true,
"isolatedModules": true,
"outDir": "dist",
"removeComments": true,
/* Strict Checks */
"strict": true,
/* Module Resolution */
"allowSyntheticDefaultImports": true,
"baseUrl": ".",
"esModuleInterop": true,
"moduleResolution": "Node10",
"paths": {
"#app/*": ["src/app/*"],
"#configs": ["src/configs"],
"#configs/*": ["src/configs/*"],
"#entities/*": ["src/entities/*"],
"#modules/*": ["src/modules/*"],
"#platforms/*": ["src/platforms/*"],
"#utils/*": ["src/utils/*"]
},
/* Linter Checks */
"noFallthroughCasesInSwitch": true,
"noImplicitReturns": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
/* Experimental */
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
/* Advanced */
"forceConsistentCasingInFileNames": true,
"preserveConstEnums": true,
"resolveJsonModule": true,
"skipLibCheck": true
}
}