-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig-serve.json
63 lines (63 loc) · 1001 Bytes
/
tsconfig-serve.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
57
58
59
60
61
62
63
{
"compilerOptions": {
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"target": "es5",
"baseUrl": "./src",
"typeRoots": [
"node_modules/@types"
],
"lib": [
"es2017",
"es2016",
"es2015",
"dom"
]
},
"paths": {
"@app/*": [
"app/*"
],
"@models/*": [
"app/models/*"
],
"@services/*": [
"app/services/*"
],
"@pipes/*": [
"app/pipes/*"
],
"@core/*": [
"app/core/*"
],
"@classes/*": [
"app/classes/*"
],
"@shared/*": [
"app/shared/*"
],
"@static/*": [
"app/static/*"
],
"@redux/*": [
"app/core/redux/*"
],
"@env/*": [
"environments/*"
],
"@testing/*": [
"testing/*"
]
},
"include": [
"main.ts",
"browser-ts/**/*"
],
"exclude": [
"node_modules",
"**/*.spec.ts"
]
}