3
0
Fork 0
mirror of https://github.com/ZeppelinBot/Zeppelin.git synced 2025-03-14 21:31:50 +00:00
zeppelin/tsconfig.json

23 lines
447 B
JSON
Raw Permalink 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,
"emitDecoratorMetadata": true,
2019-02-17 22:48:41 +02:00
"target": "esnext",
2018-07-01 03:35:51 +03:00
"lib": [
2019-02-17 22:48:41 +02:00
"es2017",
"esnext"
2018-07-01 03:35:51 +03:00
],
"baseUrl": "./",
"resolveJsonModule": true,
2018-12-14 06:47:58 +02:00
"esModuleInterop": true,
"outDir": "./dist"
},
"include": [
"src/**/*.ts"
]
2018-07-01 03:35:51 +03:00
}