From 4e75ba78b48c31fa153f05d8f006a22a505687b2 Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Sun, 22 Dec 2024 00:28:17 +0200 Subject: [PATCH] fix(electron): not starting in dev mode --- bin/copy-dist.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/copy-dist.ts b/bin/copy-dist.ts index 093a3a375..9e272d222 100644 --- a/bin/copy-dist.ts +++ b/bin/copy-dist.ts @@ -29,7 +29,7 @@ const copy = async () => { fs.copySync(path.join("build", srcFile), destFile, { recursive: true }); } - const filesToCopy = ["config-sample.ini"]; + const filesToCopy = ["config-sample.ini", "tsconfig.webpack.json"]; for (const file of filesToCopy) { log(`Copying ${file}`); await fs.copy(file, path.join(DEST_DIR, file));