mirror of
https://github.com/grafana/grafana.git
synced 2024-11-26 02:40:26 -06:00
92a16d2e10
* Transforms: Adds beta notice and updates transform descriptions * Rename organize fields * Webpack - enable images import * Introduce FeatureState type * Alow Container component grow/shrink config * Enable svg import in main app * Jest + webpack for svgs * InfoBox refactor (+ added feature info box), Badge component introduced * Update packages/grafana-ui/src/components/TransformersUI/FilterByNameTransformerEditor.tsx Co-authored-by: Carl Bergquist <carl@grafana.com> * Minor fixes * Update packages/grafana-ui/src/components/TransformersUI/OrganizeFieldsTransformerEditor.tsx Co-authored-by: Carl Bergquist <carl@grafana.com> * Update packages/grafana-ui/src/components/TransformersUI/SeriesToFieldsTransformerEditor.tsx Co-authored-by: Carl Bergquist <carl@grafana.com> * fix typo * Build storybook fixed * Fix padding Co-authored-by: Dominik Prokop <dominik.prokop@grafana.com> Co-authored-by: Carl Bergquist <carl@grafana.com>
21 lines
514 B
JSON
21 lines
514 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"declarationDir": "dist",
|
|
"outDir": "compiled",
|
|
"rootDirs": ["."],
|
|
"paths": {
|
|
"@grafana/slate-react": ["../grafana-ui/node_modules/@types/slate-react"]
|
|
},
|
|
"typeRoots": ["node_modules/@types"]
|
|
},
|
|
"exclude": ["dist", "node_modules"],
|
|
"extends": "@grafana/tsconfig",
|
|
"include": [
|
|
"src/**/*.ts*",
|
|
"../../public/app/types/jquery/*.ts",
|
|
"../../public/app/types/sanitize-url.d.ts",
|
|
"../../public/app/types/svg.d.ts"
|
|
]
|
|
}
|