3
0
Fork 0
mirror of https://github.com/ZeppelinBot/Zeppelin.git synced 2025-03-15 05:41:51 +00:00

TS: use esnext as target/lib

This commit is contained in:
Dragory 2019-02-17 22:48:41 +02:00
parent 207f5b3b95
commit 59204fbf51

View file

@ -6,9 +6,10 @@
"allowSyntheticDefaultImports": true, "allowSyntheticDefaultImports": true,
"experimentalDecorators": true, "experimentalDecorators": true,
"emitDecoratorMetadata": true, "emitDecoratorMetadata": true,
"target": "es2017", "target": "esnext",
"lib": [ "lib": [
"es2017" "es2017",
"esnext"
], ],
"baseUrl": "./", "baseUrl": "./",
"resolveJsonModule": true, "resolveJsonModule": true,