3
0
Fork 0
mirror of https://github.com/ZeppelinBot/Zeppelin.git synced 2025-03-15 05:41:51 +00:00
zeppelin/tsconfig.json
2018-12-14 06:47:58 +02:00

21 lines
431 B
JSON

{
"compilerOptions": {
"moduleResolution": "node",
"module": "commonjs",
"noImplicitAny": false,
"allowSyntheticDefaultImports": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"target": "es2017",
"lib": [
"es2017"
],
"baseUrl": "./",
"resolveJsonModule": true,
"esModuleInterop": true,
"outDir": "./dist"
},
"include": [
"src/**/*.ts"
]
}