-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
104 lines (104 loc) · 2.92 KB
/
tsconfig.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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"compilerOptions": {
"target": "es5",
"module": "es2015",
"moduleResolution": "node",
"sourceMap": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"removeComments": false,
"noImplicitAny": false,
"suppressImplicitAnyIndexErrors": true,
"types": [],
"lib": [
"dom",
"es5",
"es6",
"es2015.iterable"
],
"types": [
"jasmine"
],
"baseUrl": ".",
"paths": {
"ui/*": [
"node_modules/tns-core-modules/ui/*"
],
"platform": [
"node_modules/tns-core-modules/platform"
],
"image-source": [
"node_modules/tns-core-modules/image-source"
],
"xml": [
"node_modules/tns-core-modules/xml"
],
"xhr": [
"node_modules/tns-core-modules/xhr"
],
"text": [
"node_modules/tns-core-modules/text"
],
"data": [
"node_modules/tns-core-modules/data"
],
"fetch": [
"node_modules/tns-core-modules/fetch"
],
"trace": [
"node_modules/tns-core-modules/trace"
],
"fps-meter": [
"node_modules/tns-core-modules/fps-meter"
],
"color": [
"node_modules/tns-core-modules/color"
],
"application-settings": [
"node_modules/tns-core-modules/application-settings"
],
"http": [
"node_modules/tns-core-modules/http"
],
"camera": [
"node_modules/tns-core-modules/camera"
],
"console": [
"node_modules/tns-core-modules/console"
],
"timer": [
"node_modules/tns-core-modules/timer"
],
"utils/*": [
"node_modules/tns-core-modules/utils/*"
],
"location": [
"node_modules/tns-core-modules/location"
],
"file-system": [
"node_modules/tns-core-modules/file-system"
],
"application": [
"node_modules/tns-core-modules/application"
],
"image-asset": [
"node_modules/tns-core-modules/image-asset"
],
"connectivity": [
"node_modules/tns-core-modules/connectivity"
],
"globals": [
"node_modules/tns-core-modules/globals"
]
}
},
"exclude": [
"node_modules",
"platforms",
"app/tests"
],
"angularCompilerOptions": {
"skipMetadataEmit": true,
"genDir": "./"
}
}