-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
executable file
·40 lines (40 loc) · 1.33 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
{
"compilerOptions": {
"module": "CommonJS",
"lib": ["DOM", "ES2015"],
"esModuleInterop": true,
"resolveJsonModule": true,
"moduleResolution": "node",
"target": "ES2015",
"noImplicitAny": true,
"sourceMap": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"strict": true,
"baseUrl": "./",
"outDir": "./cache",
"forceConsistentCasingInFileNames": true,
"allowSyntheticDefaultImports": true,
"pretty": true,
"noUnusedLocals": false,
"noUnusedParameters": false,
"plugins": [
{ "transform": "typescript-transform-paths" },
{ "transform": "typescript-transform-paths", "afterDeclarations": true }
],
"paths": {
"@bootstrap/*": ["src/bootstrap/*"],
"@configs/*": ["src/configs/*"],
"@auth/*": ["src/features/auth/*"],
"@user/*": ["src/features/user/*"],
"@interfaces/*": ["src/interfaces/*"],
"@decorators/*": ["src/shared/globals/decorators/*"],
"@helpers/*": ["src/shared/globals/helpers/*"],
"@services/*": ["src/shared/globals/services/*"],
"@workers/*": ["src/shared/globals/workers/*"],
"@root/*": ["src/*"]
}
},
"include": ["src/**/*.ts", "test/**/*.ts"],
"exclude": ["node_modules", "src/features/auth/controllers/test", "src/bootstrap/test", "src/shared/globals/mocks"]
}