-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
tsconfig.base.json
59 lines (59 loc) · 2 KB
/
tsconfig.base.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
51
52
53
54
55
56
57
58
59
{
"compileOnSave": false,
"compilerOptions": {
"rootDir": ".",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
"target": "es2015",
"module": "esnext",
"lib": ["es2020", "dom"],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"baseUrl": ".",
"paths": {
"@cat-fostering/entities": ["libs/shared/entities/src/index.ts"],
"@cat-fostering/nestjs-catprofile-module": [
"libs/catprofile/nestjs-module/src/index.ts"
],
"@cat-fostering/nestjs-fostering-module": [
"libs/fostering/nestjs-module/src/index.ts"
],
"@cat-fostering/nestjs-user-module": [
"libs/user/nestjs-module/src/index.ts"
],
"@cat-fostering/nestjs-utils": ["libs/shared/nestjs-utils/src/index.ts"],
"@cat-fostering/ng-catprofile-components": [
"libs/catprofile/ng-components/src/index.ts"
],
"@cat-fostering/ng-catprofile-state": [
"libs/catprofile/ng-state/src/index.ts"
],
"@cat-fostering/ng-components": [
"libs/ng-shared/components/src/index.ts"
],
"@cat-fostering/ng-data-acess": [
"libs/ng-shared/data-access/src/index.ts"
],
"@cat-fostering/ng-env": ["libs/ng-shared/env/src/index.ts"],
"@cat-fostering/ng-fostering-components": [
"libs/fostering/ng-components/src/index.ts"
],
"@cat-fostering/ng-fostering-state": [
"libs/fostering/ng-state/src/index.ts"
],
"@cat-fostering/ng-state": ["libs/ng-shared/state/src/index.ts"],
"@cat-fostering/ng-user-state": ["libs/user/ng-state/src/index.ts"],
"@cat-fostering/ory-config-generators": [
"libs/ory-config-generators/src/index.ts"
],
"@cat-fostering/pg-config": ["libs/pg-config/src/index.ts"]
},
"typeRoots": ["node_modules/@types", "types"],
"types": ["@dotenvx/dotenvx"]
},
"exclude": ["node_modules", "tmp"]
}