Skip to content
This repository was archived by the owner on Feb 10, 2023. It is now read-only.

Commit 25d6c74

Browse files
Veselina RadevaVeselina Radeva
authored andcommitted
fix(ios): Disable importHelpers in tsconfig of the plugin
Set importHelpers=false in plugs tsconfig since otherwise the demo app doesn’t work as expected in iOS.
1 parent ccc4df6 commit 25d6c74

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

test/e2e/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@
66
"nativescript": {
77
"id": "org.nativescript.sampleApp",
88
"tns-ios": {
9-
"version": "3.0.0"
9+
"version": "3.0.0-rc.1-2017-3-28-2"
1010
},
1111
"tns-android": {
12-
"version": "2.5.0"
12+
"version": "3.0.0-rc.1"
1313
}
1414
},
1515
"dependencies": {

tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"noEmitOnError": true,
1010
"skipDefaultLibCheck": true,
1111
"skipLibCheck": true,
12-
"importHelpers": true,
12+
"importHelpers": false,
1313
"lib": [
1414
"es2015",
1515
"es2015.iterable",

0 commit comments

Comments
 (0)