fix(core): initial

This commit is contained in:
2018-07-25 20:56:42 +02:00
commit 64643b500f
21 changed files with 1519 additions and 0 deletions

9
ts/index.ts Normal file
View File

@ -0,0 +1,9 @@
export * from "./tsbuild.exports";
import * as tsbuild from './tsbuild.exports'
if (process.env.CLI_CALL_TSBUILD === "true") {
tsbuild.compileGlobStringObject({
"./ts/**/*.ts": "./dist"
})
}