3
0
Fork 0
mirror of https://github.com/ZeppelinBot/Zeppelin.git synced 2025-05-10 12:25:02 +00:00

Change target in tsconfig from esnext to es2018 to support optional chaining/nullish coalescing on Node.js 12

This commit is contained in:
Dragory 2019-11-27 21:43:39 +02:00
parent 02e53aa358
commit 00e047f701
3 changed files with 3 additions and 4 deletions

View file

@ -2,7 +2,7 @@
"compilerOptions": {
"moduleResolution": "node",
"module": "esnext",
"target": "esnext",
"target": "es2018",
"sourceMap": true,
"noImplicitAny": false,
"allowSyntheticDefaultImports": true,