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

Grafana UI: Ignore internal stories when compiling
pull/66007/head
Jack Westbrook 2 years ago committed by GitHub
parent 6108701aed
commit c96d5d6c7e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 10
      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"
}

Loading…
Cancel
Save