Grafana UI: Fix TS error property css is missing in type (#38078)

This commit is contained in:
Jack Westbrook 2021-08-26 16:00:52 +02:00 committed by GitHub
parent 785072086c
commit 5339275793
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 11 additions and 0 deletions

View File

@ -0,0 +1,4 @@
// This stub is required due to Storybook 6.x reliance on @emotion/core
// which causes conflicts with emotion 11 types resulting in bundled
// components throwing ts error `Property 'css' is missing in type...`
export {};

View File

@ -1,4 +1,11 @@
{
"compilerOptions": {
"paths": {
"@emotion/core": ["../../src/types/emotion-core-stub.d.ts"],
"@grafana/slate-react": ["slate-react"],
"@grafana/ui": ["."]
}
},
"exclude": ["**/*.story.tsx", "**/*.test.ts*", "**/*.tmpl.ts", "dist", "node_modules", "src/utils/storybook"],
"extends": "./tsconfig.json"
}