From dad877cca0752bbca2474ce5469c6c3267e55510 Mon Sep 17 00:00:00 2001 From: Philipp Kief Date: Mon, 15 Jul 2024 19:27:35 +0200 Subject: [PATCH] Avoid emit of generated files as it's done by the bundler itself --- tsconfig.json | 1 + 1 file changed, 1 insertion(+) diff --git a/tsconfig.json b/tsconfig.json index 27f459e9..82e31b92 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -4,6 +4,7 @@ "module": "commonjs", "outDir": "./dist", "strict": true, + "noEmit": true, "esModuleInterop": true, "resolveJsonModule": true, "lib": ["es2022", "dom"]