mirror of
https://github.com/ZeppelinBot/Zeppelin.git
synced 2025-05-11 04:45:02 +00:00
Allow JSON TS imports, fix errors from enabling esModuleInterop (required for JSON imports)
This commit is contained in:
parent
e6f296381e
commit
498ebe8939
8 changed files with 13 additions and 10 deletions
|
@ -1,5 +1,6 @@
|
|||
{
|
||||
"compilerOptions": {
|
||||
"moduleResolution": "node",
|
||||
"module": "commonjs",
|
||||
"noImplicitAny": false,
|
||||
"allowSyntheticDefaultImports": true,
|
||||
|
@ -10,6 +11,8 @@
|
|||
"es7",
|
||||
"ES2017"
|
||||
],
|
||||
"baseUrl": "./"
|
||||
"baseUrl": "./",
|
||||
"resolveJsonModule": true,
|
||||
"esModuleInterop": true
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue