Skip to content

Commit

Permalink
feat!: target ES6 JavaScript
Browse files Browse the repository at this point in the history
BREAKING CHANGE: bump the target for compiled JavaScript from
ES5 to ES6, which should afford smaller code bundles and faster
runtimes thanks to newer JavaScript features provided by all
of the largest, modern browsers.

This is technically a breaking change but is expected to be of no
impact to most users.

Closes #133
  • Loading branch information
EricCrosson committed Jan 23, 2022
1 parent 47ea677 commit a8f703d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"dist"
],
"compilerOptions": {
"target": "es5",
"target": "es6",
"module": "commonjs",
"lib": [
"dom",
Expand Down

0 comments on commit a8f703d

Please sign in to comment.