mirror of
https://github.com/grafana/grafana.git
synced 2024-11-23 01:16:31 -06:00
c96d5d6c7e
Grafana UI: Ignore internal stories when compiling
19 lines
346 B
JSON
19 lines
346 B
JSON
{
|
|
"compilerOptions": {
|
|
"paths": {
|
|
"@emotion/core": ["./src/types/emotion-core-stub.d.ts"],
|
|
"@grafana/ui": ["."]
|
|
}
|
|
},
|
|
"exclude": [
|
|
"**/*.story.tsx",
|
|
"**/*.story.internal.tsx",
|
|
"**/*.test.ts*",
|
|
"**/*.tmpl.ts",
|
|
"dist",
|
|
"node_modules",
|
|
"src/utils/storybook"
|
|
],
|
|
"extends": "./tsconfig.json"
|
|
}
|