tsbuild/ts/index.ts

10 lines
203 B
TypeScript
Raw Normal View History

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