fix(compiler): fix options for compiler

This commit is contained in:
2018-07-25 23:38:30 +02:00
parent bc6039e5ed
commit eeb6d6b963
6 changed files with 38 additions and 23 deletions

View File

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