mirror of
https://github.com/grafana/grafana.git
synced 2024-11-29 12:14:08 -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
22 lines
493 B
JSON
22 lines
493 B
JSON
{
|
|
"compilerOptions": {
|
|
"declarationDir": "dist",
|
|
"outDir": "compiled",
|
|
"rootDirs": ["."],
|
|
"paths": {
|
|
"@grafana/data": ["."]
|
|
},
|
|
"incremental": true,
|
|
"tsBuildInfoFile": "./tsconfig.tsbuildinfo"
|
|
},
|
|
"exclude": ["dist", "node_modules"],
|
|
"extends": "@grafana/tsconfig",
|
|
"include": [
|
|
"src/**/*.ts*",
|
|
"typings/jest",
|
|
"../../public/app/types/jquery/*.ts",
|
|
"../../public/app/types/*.d.ts",
|
|
"../../public/app/types/sanitize-url.d.ts"
|
|
]
|
|
}
|