-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtsconfig.base.json
More file actions
27 lines (27 loc) · 908 Bytes
/
Copy pathtsconfig.base.json
File metadata and controls
27 lines (27 loc) · 908 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
{
"compileOnSave": false,
"compilerOptions": {
"sourceMap": true,
"declaration": false,
"moduleResolution": "bundler",
"experimentalDecorators": true,
"importHelpers": true,
"target": "ES2022",
"module": "esnext",
"lib": ["es2015", "dom"],
"baseUrl": "./",
"strictPropertyInitialization": false,
"paths": {
"@config/netflicks": ["libs/config/src/index.ts"],
"@core/*": ["libs/core/auth/src/lib/*"],
"@core/auth": ["libs/core/auth/src/index.ts"],
"@env/*": ["apps/netflicks/src/environments/*"],
"@feature/*": ["libs/feature/src/lib/*"],
"@feature/netflicks": ["libs/feature/src/index.ts"],
"@layout/netflicks": ["libs/layout/src/index.ts"],
"@material/module": ["src/app/material.module"],
"@shared/netflicks": ["libs/shared/src/index.ts"],
"@shared/styles": ["libs/styles/src/index.ts"]
}
}
}