From 3c47efe6bf6851419c064b198c90316dd5271e31 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=B8ren=20L=2E=20Hansen?= Date: Sun, 27 Nov 2022 21:04:58 -0800 Subject: [PATCH] Prevent warning from tsc about overwriting input --- js/tsconfig.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/js/tsconfig.json b/js/tsconfig.json index 163b28e..06609e5 100644 --- a/js/tsconfig.json +++ b/js/tsconfig.json @@ -18,6 +18,7 @@ } }, "exclude": [ - "node_modules" + "node_modules", + "dist" ] }