We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c2fb7b3 commit 63aaeebCopy full SHA for 63aaeeb
src/targets/typescript.ts
@@ -80,7 +80,7 @@ export default async function build({
80
81
let tsc = options?.tsc
82
? path.resolve(root, options.tsc)
83
- : path.join(root, 'node_modules') +
+ : path.resolve(root, 'node_modules', '.bin', 'tsc') +
84
(platform() === 'win32' ? '.cmd' : '');
85
86
if (!(await fs.pathExists(tsc))) {
0 commit comments