-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.base.json
More file actions
32 lines (32 loc) · 1.18 KB
/
tsconfig.base.json
File metadata and controls
32 lines (32 loc) · 1.18 KB
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
{
"compileOnSave": false,
"compilerOptions": {
"rootDir": ".",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
"target": "es2015",
"module": "esnext",
"lib": ["es2017", "dom"],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"baseUrl": ".",
"paths": {
"@caas/web/env": ["apps/web/caas/src/environments/environment.ts"],
"@caas/web/artifact-runner": ["libs/web/artifact-runner/src/index.ts"],
"@caas/web/confirmance-test": ["libs/web/confirmance-test/src/index.ts"],
"@caas/web/certificate-issuer": ["libs/web/certificate-issuer/src/index.ts"],
"@caas/web/auth": ["libs/web/auth/src/index.ts"],
"@caas/web/api": ["libs/web/api/src/index.ts"],
"@caas/srv/auth": ["libs/srv/auth/src/index.ts"],
"@caas/srv/config": ["libs/srv/config/src/index.ts"],
"@caas/srv/mongo": ["libs/srv/mongo/src/index.ts"],
"@caas/srv/kafka": ["libs/srv/kafka/src/index.ts"],
"@caas/web/test-environment": ["libs/web/test-environment/src/index.ts"]
}
},
"exclude": ["node_modules", "tmp"]
}