mirror of
https://github.com/grafana/grafana.git
synced 2024-11-22 08:56:43 -06:00
803473f479
* wrap a bunch of errors * wrap more things! * fix up some unit tests * wrap more errors * tiny bit of tidy up
25 lines
616 B
JSON
25 lines
616 B
JSON
{
|
|
"compilerOptions": {
|
|
"jsx": "react",
|
|
"baseUrl": "public/",
|
|
"outDir": "public/dist",
|
|
"rootDirs": ["public/"],
|
|
"allowJs": true,
|
|
"strict": true,
|
|
"resolveJsonModule": true,
|
|
"useUnknownInCatchVariables": true,
|
|
"incremental": true,
|
|
"tsBuildInfoFile": "./tsconfig.tsbuildinfo"
|
|
},
|
|
"extends": "@grafana/tsconfig/base.json",
|
|
"include": [
|
|
"public/app/**/*.ts*",
|
|
"public/e2e-test/**/*.ts",
|
|
"public/test/**/*.ts",
|
|
"public/vendor/**/*.ts",
|
|
"packages/jaeger-ui-components/typings",
|
|
"packages/grafana-data/typings",
|
|
"packages/grafana-ui/src/types"
|
|
]
|
|
}
|