-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.app.json
30 lines (30 loc) · 1.06 KB
/
tsconfig.app.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
/* To learn more about this file see: https://angular.io/config/tsconfig. */
{
"extends": "./tsconfig.json",
"compilerOptions": {
"outDir": "./out-tsc/app",
"types": [],
"paths": {
"@components/*": ["app/shared/components/*"],
"@components": ["app/shared/components/components.index"],
"@data/*": ["app/core/data/*"],
"@data": ["app/core/data/data.index"],
"@features/*": ["app/features/*"],
"@features": ["app/features/features.index"],
"@guards/*": ["app/core/guards/*"],
"@guards": ["app/core/guards/guards.index"],
"@models/*": ["app/core/models/*"],
"@models": ["app/core/models/models.index"],
"@pipes/*": ["app/shared/pipes/*"],
"@pipes": ["app/shared/pipes/pipes.index"],
"@services/*": ["app/core/services/*"],
"@services": ["app/core/services/services.index"],
"@schemas/*": ["app/core/schemas/*"],
"@schemas": ["app/core/schemas/schemas.index"],
"@validators/*": ["app/shared/validators/*"],
"@validators": ["app/shared/validators/validators.index"]
}
},
"files": ["src/main.ts"],
"include": ["src/**/*.d.ts"]
}