Skip to content
This repository was archived by the owner on Aug 7, 2021. It is now read-only.

Commit c453944

Browse files
authored
fix(tsconfig): add missing paths and skipLibCheck option (#140)
1 parent 839ce93 commit c453944

File tree

1 file changed

+20
-19
lines changed

1 file changed

+20
-19
lines changed

Diff for: tsconfig.aot.json.template

+20-19
Original file line numberDiff line numberDiff line change
@@ -3,30 +3,31 @@
33
"compilerOptions": {
44
"baseUrl": ".",
55
"paths": {
6-
"ui/*": ["node_modules/tns-core-modules/ui/*"],
7-
"platform": ["node_modules/tns-core-modules/platform"],
8-
"image-source": ["node_modules/tns-core-modules/image-source"],
9-
"xml": ["node_modules/tns-core-modules/xml"],
10-
"xhr": ["node_modules/tns-core-modules/xhr"],
11-
"text": ["node_modules/tns-core-modules/text"],
12-
"data": ["node_modules/tns-core-modules/data"],
13-
"fetch": ["node_modules/tns-core-modules/fetch"],
14-
"trace": ["node_modules/tns-core-modules/trace"],
15-
"fps-meter": ["node_modules/tns-core-modules/fps-meter"],
16-
"color": ["node_modules/tns-core-modules/color"],
6+
"application": ["node_modules/tns-core-modules/application"],
177
"application-settings": ["node_modules/tns-core-modules/application-settings"],
18-
"http": ["node_modules/tns-core-modules/http"],
198
"camera": ["node_modules/tns-core-modules/camera"],
9+
"color": ["node_modules/tns-core-modules/color"],
10+
"connectivity": ["node_modules/tns-core-modules/connectivity"],
2011
"console": ["node_modules/tns-core-modules/console"],
21-
"timer": ["node_modules/tns-core-modules/timer"],
22-
"utils": ["node_modules/tns-core-modules/utils"],
23-
"location": ["node_modules/tns-core-modules/location"],
12+
"data/*": ["node_modules/tns-core-modules/data/*"],
13+
"fetch": ["node_modules/tns-core-modules/fetch"],
2414
"file-system": ["node_modules/tns-core-modules/file-system"],
25-
"application": ["node_modules/tns-core-modules/application"],
15+
"fps-meter": ["node_modules/tns-core-modules/fps-meter"],
16+
"globals": ["node_modules/tns-core-modules/globals"],
17+
"http": ["node_modules/tns-core-modules/http"],
2618
"image-asset": ["node_modules/tns-core-modules/image-asset"],
27-
"connectivity": ["node_modules/tns-core-modules/connectivity"],
28-
"globals": ["node_modules/tns-core-modules/globals"]
29-
}
19+
"image-source": ["node_modules/tns-core-modules/image-source"],
20+
"location": ["node_modules/tns-core-modules/location"],
21+
"platform": ["node_modules/tns-core-modules/platform"],
22+
"text": ["node_modules/tns-core-modules/text"],
23+
"timer": ["node_modules/tns-core-modules/timer"],
24+
"trace": ["node_modules/tns-core-modules/trace"],
25+
"ui/*": ["node_modules/tns-core-modules/ui/*"],
26+
"utils/*": ["node_modules/tns-core-modules/utils/*"],
27+
"xhr": ["node_modules/tns-core-modules/xhr"],
28+
"xml": ["node_modules/tns-core-modules/xml"]
29+
},
30+
"skipLibCheck": true
3031
},
3132
"exclude": [
3233
"node_modules",

0 commit comments

Comments
 (0)