mirror of
https://github.com/grafana/grafana.git
synced 2024-12-27 09:21:35 -06:00
afeb0fc792
* Update dependency @types/testing-library__jest-dom to v6 * remove package and fix types * don't include setupTests in the build tsconfig * exclude testUtils --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Ashley Harrison <ashley.harrison@grafana.com>
23 lines
607 B
JSON
23 lines
607 B
JSON
{
|
|
"compilerOptions": {
|
|
"jsx": "react-jsx",
|
|
"baseUrl": "./",
|
|
"declarationDir": "./compiled",
|
|
"emitDeclarationOnly": true,
|
|
"isolatedModules": true,
|
|
"allowJs": true,
|
|
"rootDirs": ["."]
|
|
},
|
|
"exclude": ["dist/**/*"],
|
|
"extends": "@grafana/tsconfig",
|
|
"include": ["../../public/test/setupTests.ts", "../../public/app/types/*.d.ts", "src/**/*.ts*"],
|
|
// override for storybook which uses ts-node to compile main.ts / preview.ts files.
|
|
"ts-node": {
|
|
"compilerOptions": {
|
|
"isolatedModules": false,
|
|
"resolveJsonModule": true,
|
|
"module": "commonjs"
|
|
}
|
|
}
|
|
}
|