0
0
mirror of https://github.com/sveltejs/svelte.git synced 2024-12-01 17:30:59 +01:00

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

set typescript target to ES6
This commit is contained in:
Rich Harris 2018-03-24 12:24:49 -04:00 committed by GitHub
commit d29de3c817
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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