mirror of
https://github.com/grafana/grafana.git
synced 2024-11-23 09:26:43 -06:00
8f06784449
* chore(d3-color): resolve all copies to 3.1.0 to fix vulnerability * chore(yarn): fix resolution version * chore(jest): compile d3-color from esm to cjs * chore(d3): bump d3 to latest, set jest config to transpile es modules * chore: bump visx packages to resolve d3-color to latest * chore(jest): add missing es modules to config * chore(storybook): prevent storybook config failure due to nested esm imports * chore(storybook): use a direct path to avoid es modules breaking config build * build(sass): use esbuild to generate sass theme vars for esm deps * chore: clean up swc dependencies * revert: remove debug console.log breaking tests
21 lines
527 B
JSON
21 lines
527 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": "./",
|
|
"declarationDir": "./compiled",
|
|
"emitDeclarationOnly": true,
|
|
"isolatedModules": true,
|
|
"rootDirs": ["."]
|
|
},
|
|
"exclude": ["dist/**/*"],
|
|
"extends": "@grafana/tsconfig",
|
|
"include": ["src/**/*.ts*", "../../public/app/types/*.d.ts"],
|
|
// override for storybook which uses ts-node to compile main.ts / preview.ts files.
|
|
"ts-node": {
|
|
"compilerOptions": {
|
|
"isolatedModules": false,
|
|
"resolveJsonModule": true,
|
|
"module": "commonjs"
|
|
}
|
|
}
|
|
}
|