Grafana UI: Ignore internal stories when compiling (#65983)

Grafana UI: Ignore internal stories when compiling
This commit is contained in:
Jack Westbrook 2023-04-05 11:47:37 +02:00 committed by GitHub
parent 6108701aed
commit c96d5d6c7e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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"
}