From ae9a2b459ab72c2f8de5c0b837a948a6364142d1 Mon Sep 17 00:00:00 2001 From: Lukas Bals Date: Tue, 24 Oct 2023 23:38:56 +0200 Subject: [PATCH] Ignore stories in build --- tsconfig.json | 1 + 1 file changed, 1 insertion(+) diff --git a/tsconfig.json b/tsconfig.json index 2d7419f..cdfb9f8 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,6 +1,7 @@ { // see https://www.typescriptlang.org/tsconfig to better understand tsconfigs "include": ["src", "types"], + "exclude": ["**/*.stories.tsx"], "compilerOptions": { "module": "esnext", "lib": ["dom", "esnext"],