-
-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathtsconfig.base.json
More file actions
28 lines (28 loc) · 771 Bytes
/
tsconfig.base.json
File metadata and controls
28 lines (28 loc) · 771 Bytes
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
{
"compileOnSave": false,
"compilerOptions": {
"rootDir": ".",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"importHelpers": false,
"target": "ES2020",
"module": "commonjs",
"lib": ["esnext"],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"baseUrl": ".",
"paths": {
"@app/auth/*": ["libs/auth/src/lib/*"],
"@app/db/*": ["libs/db/src/lib/*"],
"@app/env": ["environments/environment.ts"],
"@app/http/*": ["libs/http/src/lib/*"],
"@app/users/*": ["services/users/src/*"]
}
},
"exclude": ["node_modules", "tmp"]
}