🔀 Merge pull request #293 from d0whc3r/patch-1

fix: use .bin for tsc
This commit is contained in:
Jan
2020-02-07 16:34:07 -08:00
committed by GitHub

View File

@@ -64,7 +64,7 @@ export async function buildFiles (options?: IBuildOptions): Promise<string> {
options = options || {};
// Get the path of the TypeScript cli of this project
const tscPath = join(__dirname, '../../node_modules/typescript/bin/tsc');
const tscPath = join(__dirname, '../../node_modules/.bin/tsc');
const tsconfigData = await createCustomTsconfig();