mirror of
https://github.com/grafana/grafana.git
synced 2024-11-26 02:40:26 -06:00
efe9eed758
* chore(typescript): move TS cache file to root of repo * chore(typescript): cache packages ts checks to disk for faster yarn typecheck
24 lines
580 B
JSON
24 lines
580 B
JSON
{
|
|
"compilerOptions": {
|
|
"jsx": "react",
|
|
"baseUrl": "public/",
|
|
"outDir": "public/dist",
|
|
"rootDirs": ["public/"],
|
|
"allowJs": true,
|
|
"strict": true,
|
|
"resolveJsonModule": true,
|
|
"useUnknownInCatchVariables": false,
|
|
"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"
|
|
]
|
|
}
|