Skip to content

Commit

Permalink
Replace jshint with tslint
Browse files Browse the repository at this point in the history
Add package-lock.json
  • Loading branch information
cracrayol committed Nov 3, 2019
1 parent 1900c72 commit 45eb52b
Show file tree
Hide file tree
Showing 5 changed files with 439 additions and 4 deletions.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ dist
# NPM / node.js stuff
npm-debug.log
node_modules
package-lock.json

# Keystore to sign apks
keystore
Expand Down
Loading

1 comment on commit 45eb52b

@tonib
Copy link
Owner

@tonib tonib commented on 45eb52b Dec 31, 2019

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I have changed the Typescript target from es5 to es3. The reason is Cordova app. Up to v.1.11 the minimum supported Android version was 4.4. According to https://developer.chrome.com/multidevice/webview/overview , the WebView (the HTML/Javascript control) of Android 4.4.3 was equivalent to Chrome 33, and that's a really old version.
After v1.11.1 the min. current supported version is Android 5, and I don't know what Chrome equivalence has, but probably it will be an older Chrome version too. And I don't know if es5 will be (fully) supported.

Please sign in to comment.