mirror of
https://github.com/ZeppelinBot/Zeppelin.git
synced 2025-03-14 21:31:50 +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:
parent
02e53aa358
commit
00e047f701
3 changed files with 3 additions and 4 deletions
|
@ -6,9 +6,8 @@
|
|||
"allowSyntheticDefaultImports": true,
|
||||
"experimentalDecorators": true,
|
||||
"emitDecoratorMetadata": true,
|
||||
"target": "esnext",
|
||||
"target": "es2018",
|
||||
"lib": [
|
||||
"es2017",
|
||||
"esnext"
|
||||
],
|
||||
"baseUrl": ".",
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
"compilerOptions": {
|
||||
"moduleResolution": "node",
|
||||
"module": "esnext",
|
||||
"target": "esnext",
|
||||
"target": "es2018",
|
||||
"sourceMap": true,
|
||||
"noImplicitAny": false,
|
||||
"allowSyntheticDefaultImports": true,
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
"allowSyntheticDefaultImports": true,
|
||||
"experimentalDecorators": true,
|
||||
"emitDecoratorMetadata": true,
|
||||
"target": "esnext",
|
||||
"target": "es2018",
|
||||
"lib": [
|
||||
"esnext"
|
||||
],
|
||||
|
|
Loading…
Add table
Reference in a new issue