-
Notifications
You must be signed in to change notification settings - Fork 5
/
tsconfig.json
50 lines (50 loc) · 1.57 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
{
"compilerOptions": {
"allowJs": false,
"alwaysStrict": true,
"allowSyntheticDefaultImports": true,
"baseUrl": "./",
"declaration": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"incremental": true,
"isolatedModules": true,
"module": "commonjs",
"strictPropertyInitialization": false,
"noImplicitAny": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noUnusedLocals": true,
"noUnusedParameters": false,
"typeRoots": ["./types", "./node_modules/@types"],
"outDir": "./dist",
"removeComments": true,
"sourceMap": true,
"skipLibCheck": true,
"strict": true,
"strictNullChecks": true,
"target": "es2021",
"paths": {
"@apps/hiking-app": ["apps/hiking-app/src"],
"@apps/hiking-app/*": ["apps/hiking-app/src/*"],
"@apps/projects-app": ["apps/projects-app/src"],
"@apps/projects-app/*": ["apps/projects-app/src/*"],
"@libs/boostraper": ["libs/boostraper/src"],
"@libs/boostraper/*": ["libs/boostraper/src/*"],
"@libs/databases": ["libs/databases/src"],
"@libs/databases/*": ["libs/databases/src/*"],
"@libs/decorators": ["libs/decorators/src"],
"@libs/decorators/*": ["libs/decorators/src/*"],
"@libs/filters": ["libs/filters/src"],
"@libs/filters/*": ["libs/filters/src/*"],
"@libs/pipes": ["libs/pipes/src"],
"@libs/pipes/*": ["libs/pipes/src/*"],
"@libs/rxjs": ["libs/rxjs/src"],
"@libs/rxjs/*": ["libs/rxjs/src/*"],
"@libs/tests": ["libs/tests/src"],
"@libs/tests/*": ["libs/tests/src/*"]
}
}
}