mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
* build(typescript): switch module resolution to bundler for exports imports goodness * chore: bump react-calendar and temp patch prometheus-io package * Wip * feat(decoupled-plugin): fix types errors in tests by including testing-library/jest-dom * chore(betterer): pass custom tsconfig so betterer continues to run
31 lines
816 B
JSON
31 lines
816 B
JSON
{
|
|
"compilerOptions": {
|
|
"jsx": "react-jsx",
|
|
"baseUrl": "public/",
|
|
"outDir": "public/dist",
|
|
"rootDirs": ["public/"],
|
|
"allowJs": true,
|
|
"strict": true,
|
|
"resolveJsonModule": true,
|
|
"useUnknownInCatchVariables": true,
|
|
"incremental": true,
|
|
"isolatedModules": true,
|
|
"moduleResolution": "bundler",
|
|
"tsBuildInfoFile": "./tsconfig.tsbuildinfo",
|
|
"paths": {
|
|
"@grafana/schema/dist/esm/*": ["../packages/grafana-schema/src/*"]
|
|
}
|
|
},
|
|
"extends": "@grafana/tsconfig/base.json",
|
|
"include": [
|
|
"public/app/**/*.ts*",
|
|
"public/swagger/**/*.ts*",
|
|
"public/e2e-test/**/*.ts",
|
|
"public/test/**/*.ts*",
|
|
"public/vendor/**/*.ts",
|
|
"packages/grafana-data/typings",
|
|
"packages/grafana-ui/src/types"
|
|
],
|
|
"exclude": ["public/app/**/webpack.config.ts"]
|
|
}
|