-
Notifications
You must be signed in to change notification settings - Fork 2
/
tsconfig.base.json
43 lines (43 loc) · 1.45 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
{
"compileOnSave": false,
"compilerOptions": {
"rootDir": ".",
"sourceMap": true,
"declaration": false,
"useDefineForClassFields": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
"target": "ES2022",
"module": "esnext",
"lib": ["es2017", "dom"],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"baseUrl": ".",
"paths": {
"@nx-example/boarding/domain": ["libs/boarding/domain/index.ts"],
"@nx-example/booking/domain": ["libs/booking/domain/src/index.ts"],
"@nx-example/booking/feature-book": [
"libs/booking/feature-book/src/index.ts"
],
"@nx-example/booking/feature-tickets": [
"libs/booking/feature-tickets/src/index.ts"
],
"@nx-example/booking/ui-common": [
"libs/booking/ui-common/src/index.ts"
],
"@nx-example/luggage/domain": ["libs/luggage/domain/src/index.ts"],
"@nx-example/luggage/feature-checkin": [
"libs/luggage/feature-checkin/src/index.ts"
],
"@nx-example/luggage/feature-report-loss": [
"libs/luggage/feature-report-loss/src/index.ts"
],
"@nx-example/my-plugin": ["libs/my-plugin/src/index.ts"],
"@nx-example/shared/ui-shell": ["libs/shared/ui-shell/src/index.ts"],
"@nx-example/shared/util-common": ["libs/shared/util-common/src/index.ts"]
}
},
"exclude": ["node_modules", "tmp"]
}