mirror of
https://github.com/grafana/grafana.git
synced 2024-11-21 16:38:03 -06:00
427dad26a2
Co-authored-by: Kristian Bremberg <kristian.bremberg@grafana.com>
29 lines
752 B
JSON
29 lines
752 B
JSON
{
|
|
"compilerOptions": {
|
|
"jsx": "react-jsx",
|
|
"baseUrl": "public/",
|
|
"outDir": "public/dist",
|
|
"rootDirs": ["public/"],
|
|
"allowJs": true,
|
|
"strict": true,
|
|
"resolveJsonModule": true,
|
|
"useUnknownInCatchVariables": true,
|
|
"incremental": true,
|
|
"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"]
|
|
}
|