Skip to content

Commit f663889

Browse files
author
GabiG
committed
change build on save to false
1 parent 166fa94 commit f663889

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

dist/main/tsconfig/tsconfig.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -285,7 +285,7 @@ function createProjectRootSync(srcFile, defaultOptions) {
285285
projectSpec.compilerOptions = tsToRawCompilerOptions(defaultOptions || exports.defaults);
286286
projectSpec.filesGlob = defaultFilesGlob;
287287
projectSpec.compileOnSave = true;
288-
projectSpec.buildOnSave = true;
288+
projectSpec.buildOnSave = false;
289289
fs.writeFileSync(projectFilePath, prettyJSON(projectSpec));
290290
return getProjectSync(srcFile);
291291
}

lib/main/tsconfig/tsconfig.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -496,7 +496,7 @@ export function createProjectRootSync(srcFile: string, defaultOptions?: ts.Compi
496496
projectSpec.compilerOptions = tsToRawCompilerOptions(defaultOptions || defaults);
497497
projectSpec.filesGlob = defaultFilesGlob;
498498
projectSpec.compileOnSave = true;
499-
projectSpec.buildOnSave = true;
499+
projectSpec.buildOnSave = false;
500500

501501
fs.writeFileSync(projectFilePath, prettyJSON(projectSpec));
502502
return getProjectSync(srcFile);

0 commit comments

Comments
 (0)