From 111e01449d0baac9840e47acfe872608331229e5 Mon Sep 17 00:00:00 2001 From: Joel Jeremy Marquez Date: Fri, 6 Feb 2026 11:20:03 -0800 Subject: [PATCH] Add build-electron to tsconfig excludes (#6883) * Add build-electron to tsconfig excludes * Add release notes for PR #6883 --------- Co-authored-by: github-actions[bot] --- tsconfig.json | 1 + upcoming-release-notes/6883.md | 6 ++++++ 2 files changed, 7 insertions(+) create mode 100644 upcoming-release-notes/6883.md diff --git a/tsconfig.json b/tsconfig.json index f3d6a50054..186558c2c1 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -50,6 +50,7 @@ "node_modules", "**/node_modules/*", "**/build/*", + "**/build-electron/*", "**/client-build/*", "**/dist/*", "**/lib-dist/*", diff --git a/upcoming-release-notes/6883.md b/upcoming-release-notes/6883.md new file mode 100644 index 0000000000..bffae1ace4 --- /dev/null +++ b/upcoming-release-notes/6883.md @@ -0,0 +1,6 @@ +--- +category: Maintenance +authors: [joel-jeremy] +--- + +Add Electron build artifacts to TypeScript configuration excludes to improve compilation efficiency.