We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a142223 commit cb74758Copy full SHA for cb74758
src/index.ts
@@ -248,7 +248,7 @@ async function compileNode (
248
// conflicting arguments have been passed manually.
249
const vcbuildArgs: string[] = [...buildArgs, ...makeArgs, 'projgen'];
250
if (!vcbuildArgs.includes('debug') && !vcbuildArgs.includes('release')) { vcbuildArgs.push('release'); }
251
- if (!vcbuildArgs.some((arg) => /^vs/.test(arg))) { vcbuildArgs.push('vs2019'); }
+ if (!vcbuildArgs.some((arg) => /^vs/.test(arg))) { vcbuildArgs.push('vs2022'); }
252
253
for (const module of linkedJSModules) {
254
vcbuildArgs.push('link-module', module);
0 commit comments