-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtsconfig.app.json
41 lines (41 loc) · 1.05 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
31
32
33
34
35
36
37
38
39
40
41
/* To learn more about this file see: https://angular.io/config/tsconfig. */
{
"extends": "./tsconfig.json",
"compilerOptions": {
"outDir": "./out-tsc/app",
"types": [],
"paths": {
"@blueprint/ontology": [
"projects/blueprint/src/app/core/ontology/index"
],
"@blueprint/utils": [
"projects/blueprint/src/app/core/utils/index"
],
"@blueprint/service/*": [
"projects/blueprint/src/app/core/service/*"
],
"@blueprint/http-interceptor/*": [
"projects/blueprint/src/app/core/http-interceptor/*"
],
"@blueprint/model/*": [
"projects/blueprint/src/app/core/model/*"
],
"@blueprint/component/*": [
"projects/blueprint/src/app/core/component/*"
],
"@blueprint/animation/*": [
"projects/blueprint/src/app/core/animation/*"
],
"@blueprint/constant/*": [
"projects/blueprint/src/app/core/constant/*"
],
}
},
"files": [
"src/main.ts",
"src/polyfills.ts"
],
"include": [
"src/**/*.d.ts"
]
}