From c96d5d6c7e7c1cbb007d8c503c4fb016f0741472 Mon Sep 17 00:00:00 2001 From: Jack Westbrook Date: Wed, 5 Apr 2023 11:47:37 +0200 Subject: [PATCH] Grafana UI: Ignore internal stories when compiling (#65983) Grafana UI: Ignore internal stories when compiling --- packages/grafana-ui/tsconfig.build.json | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/packages/grafana-ui/tsconfig.build.json b/packages/grafana-ui/tsconfig.build.json index 2ce1fd65c43..291f5a514af 100644 --- a/packages/grafana-ui/tsconfig.build.json +++ b/packages/grafana-ui/tsconfig.build.json @@ -5,6 +5,14 @@ "@grafana/ui": ["."] } }, - "exclude": ["**/*.story.tsx", "**/*.test.ts*", "**/*.tmpl.ts", "dist", "node_modules", "src/utils/storybook"], + "exclude": [ + "**/*.story.tsx", + "**/*.story.internal.tsx", + "**/*.test.ts*", + "**/*.tmpl.ts", + "dist", + "node_modules", + "src/utils/storybook" + ], "extends": "./tsconfig.json" }