config(): change target to es2017

This commit is contained in:
Kamil Myśliwiec 2019-06-24 21:26:18 +02:00
parent aeab830d25
commit 17e8157028
No known key found for this signature in database
GPG Key ID: 75F02E89A1A1092B
1 changed files with 2 additions and 2 deletions

View File

@ -5,11 +5,11 @@
"removeComments": true, "removeComments": true,
"emitDecoratorMetadata": true, "emitDecoratorMetadata": true,
"experimentalDecorators": true, "experimentalDecorators": true,
"target": "es6", "target": "es2017",
"sourceMap": true, "sourceMap": true,
"outDir": "./dist", "outDir": "./dist",
"baseUrl": "./", "baseUrl": "./",
"incremental": true, "incremental": true
}, },
"exclude": ["node_modules", "dist"] "exclude": ["node_modules", "dist"]
} }