-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.base.json
32 lines (32 loc) · 936 Bytes
/
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
{
"extends": "@tsconfig/node16",
"compilerOptions": {
"declaration": true,
"composite": true,
"target": "ESNext",
"jsx": "preserve",
"lib": ["DOM", "ESNext"],
"moduleResolution": "node",
"esModuleInterop": true,
"resolveJsonModule": true,
"experimentalDecorators": true,
"strictNullChecks": true,
"noUncheckedIndexedAccess": true,
"skipLibCheck": true,
"emitDecoratorMetadata": true,
"paths": {
"@dig-it/roots": ["roots/src"],
"@dig-it/roots/*": ["roots/src/*"],
"@dig-it/dev": ["dev/src"],
"@dig-it/dev/*": ["dev/src/*"],
"@dig-it/env": ["env/src"],
"@dig-it/env/*": ["env/src/*"],
"@dig-it/api": ["api/src"],
"@dig-it/api/*": ["api/src/*"],
"@dig-it/models": ["models/src"],
"@dig-it/models/*": ["models/src/*"],
"@dig-it/library": ["library/src"],
"@dig-it/library/*": ["library/src/*"],
},
}
}