mirror of
https://github.com/grafana/grafana.git
synced 2024-11-26 02:40:26 -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>
20 lines
437 B
JSON
20 lines
437 B
JSON
{
|
|
"compilerOptions": {
|
|
"jsx": "react-jsx",
|
|
"alwaysStrict": true,
|
|
"declarationDir": "./compiled",
|
|
"emitDeclarationOnly": true,
|
|
"isolatedModules": true,
|
|
"allowJs": true,
|
|
"rootDirs": ["."]
|
|
},
|
|
"exclude": ["dist/**/*"],
|
|
"extends": "@grafana/tsconfig",
|
|
"include": [
|
|
"../../public/test/setupTests.ts",
|
|
"../../public/app/types/*.d.ts",
|
|
"../grafana-ui/src/types/*.d.ts",
|
|
"src/**/*.ts*"
|
|
]
|
|
}
|