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

Commit

Permalink
fix(ios): Disable importHelpers in tsconfig of the plugin
Browse files Browse the repository at this point in the history
Set importHelpers=false in plugs tsconfig since otherwise the demo app doesn’t work as expected in iOS.
  • Loading branch information
Veselina Radeva authored and Veselina Radeva committed Apr 30, 2017
1 parent ccc4df6 commit 25d6c74
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions test/e2e/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@
"nativescript": {
"id": "org.nativescript.sampleApp",
"tns-ios": {
"version": "3.0.0"
"version": "3.0.0-rc.1-2017-3-28-2"
},
"tns-android": {
"version": "2.5.0"
"version": "3.0.0-rc.1"
}
},
"dependencies": {
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"noEmitOnError": true,
"skipDefaultLibCheck": true,
"skipLibCheck": true,
"importHelpers": true,
"importHelpers": false,
"lib": [
"es2015",
"es2015.iterable",
Expand Down

0 comments on commit 25d6c74

Please sign in to comment.