tsbuild/ts/index.ts

10 lines
201 B
TypeScript
Raw Normal View History

2018-07-25 18:56:42 +00:00
export * from "./tsbuild.exports";
import * as tsbuild from './tsbuild.exports'
if (process.env.CLI_CALL_TSBUILD === "true") {
tsbuild.compileGlobStringObject({
"./ts/**/*.ts": "./dist"
})
}