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 5d97b33 commit 4e43248Copy full SHA for 4e43248
lib/src/compiler-path.ts
@@ -27,7 +27,7 @@ export const compilerCommand = (() => {
27
// TODO: Make sure to remove "arm64" from "npm/win32-x64/package.json" when
28
// this logic is removed once we have true windows-arm64 support.
29
const arch =
30
- platform === 'win32' && process.arch === 'arm64' ? 'x86' : process.arch;
+ platform === 'win32' && process.arch === 'arm64' ? 'x64' : process.arch;
31
32
// find for development
33
for (const path of ['vendor', '../../../lib/src/vendor']) {
0 commit comments