-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtsconfig.base.json
37 lines (37 loc) · 1.36 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
{
"compileOnSave": false,
"compilerOptions": {
"strictPropertyInitialization": false,
"baseUrl": ".",
"rootDir": ".",
"outDir": "./dist",
"allowSyntheticDefaultImports": true,
"sourceMap": true,
"declaration": false,
"experimentalDecorators": true,
"module": "esnext",
"moduleResolution": "node",
"importHelpers": true,
"target": "es2015",
"lib": ["dom", "es2019"],
"resolveJsonModule": true,
"skipLibCheck": true,
"paths": {
"@env-api/environment": ["apps/api/src/environments/environment.ts"],
"@env/*": ["apps/webapp/src/environments/*"],
"@yeti/accounts": ["libs/accounts/src/index.ts"],
"@yeti/admin": ["libs/admin/src/index.ts"],
"@yeti/blog": ["libs/blog/src/index.ts"],
"@yeti/core": ["libs/core/src/index.ts"],
"@yeti/dashboard": ["libs/dashboard/src/index.ts"],
"@yeti/gen/grpcweb": ["libs/gen/grpcweb/src/index.ts"],
"@yeti/gen/grpcweb2": ["libs/gen/grpcweb2/src/index.ts"],
"@yeti/gen/nest": ["libs/gen/nest/src/index.ts"],
"@yeti/gen/node": ["libs/gen/node/src/index.ts"],
"@yeti/home": ["libs/home/src/index.ts"],
"@yeti/not-found": ["libs/not-found/src/index.ts"],
"@yeti/shared": ["libs/shared/src/index.ts"]
}
},
"exclude": ["coverage/**/*", "dist/**/*", "node_modules", "tmp", "todo/**/*", "tools/**/_*files/**/*"]
}