Merge pull request #1261 from sveltejs/ts-target-es6

set typescript target to ES6
pull/1279/head
Rich Harris 7 years ago committed by GitHub
commit d29de3c817
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -1,5 +1,6 @@
{ {
"compilerOptions": { "compilerOptions": {
"target": "ES6",
"diagnostics": true, "diagnostics": true,
"noImplicitThis": true, "noImplicitThis": true,
"noEmitOnError": true, "noEmitOnError": true,
@ -7,7 +8,6 @@
"lib": ["es5", "es6", "dom"], "lib": ["es5", "es6", "dom"],
"importHelpers": true "importHelpers": true
}, },
"target": "ES5",
"include": [ "include": [
"src" "src"
], ],

Loading…
Cancel
Save