🔀 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
commit 6fb4343324
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -64,7 +64,7 @@ export async function buildFiles (options?: IBuildOptions): Promise<string> {
options = options || {}; options = options || {};
// Get the path of the TypeScript cli of this project // 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(); const tsconfigData = await createCustomTsconfig();