-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.base.json
More file actions
39 lines (38 loc) · 1.54 KB
/
tsconfig.base.json
File metadata and controls
39 lines (38 loc) · 1.54 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
33
34
35
36
37
38
{
"compileOnSave": false,
"compilerOptions": {
"rootDir": ".",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
"target": "ES2021",
"module": "commonjs",
"lib": ["ES2021", "DOM"],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"strict": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"strictPropertyInitialization": false,
"esModuleInterop": true,
"baseUrl": ".",
"paths": {
"@tiny-store/shared-domain": ["libs/shared/domain/src/index.ts"],
"@tiny-store/shared-infrastructure": ["libs/shared/infrastructure/src/index.ts"],
"@tiny-store/shared-testing": ["libs/shared/testing/src/index.ts"],
"@tiny-store/modules-inventory": ["libs/modules/inventory/src/index.ts"],
"@tiny-store/modules-inventory/internal": ["libs/modules/inventory/src/internal.ts"],
"@tiny-store/modules-orders": ["libs/modules/orders/src/index.ts"],
"@tiny-store/modules-orders/internal": ["libs/modules/orders/src/internal.ts"],
"@tiny-store/modules-payments": ["libs/modules/payments/src/index.ts"],
"@tiny-store/modules-payments/internal": ["libs/modules/payments/src/internal.ts"],
"@tiny-store/modules-shipments": ["libs/modules/shipments/src/index.ts"],
"@tiny-store/modules-shipments/internal": ["libs/modules/shipments/src/internal.ts"],
"@/lib/*": ["apps/api/src/app/lib/*"]
}
},
"exclude": ["node_modules", "tmp"]
}