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

19 lines
360 B
JSON
Raw Normal View History

2018-07-01 03:35:51 +03:00
{
"compilerOptions": {
"moduleResolution": "node",
2018-07-01 03:35:51 +03:00
"module": "commonjs",
"noImplicitAny": false,
"allowSyntheticDefaultImports": true,
"experimentalDecorators": true,
"target": "ES2017",
"lib": [
"es6",
"es7",
"ES2017"
],
"baseUrl": "./",
"resolveJsonModule": true,
"esModuleInterop": true
2018-07-01 03:35:51 +03:00
}
}