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

22 lines
444 B
JSON
Raw Permalink Normal View History

{
"compilerOptions": {
"moduleResolution": "node",
2019-07-22 00:27:18 +03:00
"module": "esnext",
"target": "esnext",
2019-07-22 00:27:18 +03:00
"sourceMap": true,
"noImplicitAny": false,
"allowSyntheticDefaultImports": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"strict": false,
"lib": [
"esnext",
"dom"
],
"baseUrl": ".",
"resolveJsonModule": true,
"esModuleInterop": true,
"allowJs": true
}
}