mirror of
https://github.com/grafana/grafana.git
synced 2024-11-22 08:56:43 -06:00
1c64f7d3ff
Co-authored-by: Dominik Prokop <dominik.prokop@grafana.com> Co-authored-by: Ashley Harrison <ashley.harrison@grafana.com>
28 lines
717 B
JSON
28 lines
717 B
JSON
{
|
|
"compilerOptions": {
|
|
"jsx": "react",
|
|
"baseUrl": "public/",
|
|
"outDir": "public/dist",
|
|
"paths": {
|
|
"@grafana/slate-react": ["../node_modules/@types/slate-react"],
|
|
"app": ["app/"],
|
|
"sass": ["sass/"]
|
|
},
|
|
"rootDirs": ["public/"],
|
|
"typeRoots": ["node_modules/@types", "public/app/types"],
|
|
"allowJs": true,
|
|
"strictNullChecks": true,
|
|
"resolveJsonModule": true,
|
|
"useUnknownInCatchVariables": false
|
|
},
|
|
"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"
|
|
]
|
|
}
|