-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.app.json
56 lines (56 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"extends": "./tsconfig.json",
"compilerOptions": {
"outDir": "./out-tsc/app",
"types": [],
"paths": {
"@environment/*": [
"src/environments/*"
],
"@comment/*": [
"src/app/modules/comment/*"
],
"@complaint/*": [
"src/app/modules/complaint/*"
],
"@core/*": [
"src/app/modules/core/*"
],
"@graph-display/*": [
"src/app/modules/graph-display/*"
],
"@graph-entity/*": [
"src/app/modules/graph-entity/*"
],
"@search/*": [
"src/app/modules/search/*"
],
"@history/*": [
"src/app/modules/history/*"
],
"@layout/*": [
"src/app/modules/layout/*"
],
"@task/*": [
"src/app/modules/task/*"
],
"@user/*": [
"src/app/modules/user/*"
],
"@src/*": [
"src/app/*"
]
}
},
"files": [
"src/main.ts",
"src/polyfills.ts"
],
"include": [
"src/**/*.ts"
],
"exclude": [
"src/test.ts",
"src/**/*.spec.ts"
]
}