3
0
Fork 0
mirror of https://github.com/ZeppelinBot/Zeppelin.git synced 2025-05-11 04:45:02 +00:00

Add build process for prod

This commit is contained in:
Dragory 2018-12-14 06:47:58 +02:00
parent 1c27390b87
commit e7b8c0d64d
5 changed files with 70 additions and 16 deletions

View file

@ -6,14 +6,16 @@
"allowSyntheticDefaultImports": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"target": "ES6",
"target": "es2017",
"lib": [
"es6",
"es7",
"ES2017"
"es2017"
],
"baseUrl": "./",
"resolveJsonModule": true,
"esModuleInterop": true
}
"esModuleInterop": true,
"outDir": "./dist"
},
"include": [
"src/**/*.ts"
]
}