Skip to content

Commit

Permalink
Merge pull request #1261 from sveltejs/ts-target-es6
Browse files Browse the repository at this point in the history
set typescript target to ES6
  • Loading branch information
Rich-Harris authored Mar 24, 2018
2 parents e77988b + 60a7341 commit d29de3c
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
@@ -1,13 +1,13 @@
{
"compilerOptions": {
"target": "ES6",
"diagnostics": true,
"noImplicitThis": true,
"noEmitOnError": true,
"allowJs": true,
"lib": ["es5", "es6", "dom"],
"importHelpers": true
},
"target": "ES5",
"include": [
"src"
],
Expand Down

0 comments on commit d29de3c

Please sign in to comment.