We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4c04edb commit 8b5d4faCopy full SHA for 8b5d4fa
src/cli/framework/build.ts
@@ -27,20 +27,19 @@ export function buildFramework() {
27
process.exit(1);
28
}
29
30
- const tsc = spawnSync(tscPath, [], {
31
- stdio: "inherit",
32
- shell: true,
33
- env: {
34
- ...process.env,
35
- PATH: process.env.PATH
36
- }
37
- });
+ const tsc = spawnSync(isWindows ? tscPath : "node",
+ isWindows ? [] : [tscPath],
+ {
+ stdio: "inherit",
+ env: {
+ ...process.env,
+ ELECTRON_RUN_AS_NODE: "1"
+ }
38
+ });
39
40
if (tsc.error) {
41
console.error("TypeScript compilation error:", tsc.error);
42
- if (tsc.stderr) {
43
- console.error("TypeScript stderr:", tsc.stderr.toString());
+ process.exit(1);
44
45
46
if (tsc.status !== 0) {
0 commit comments