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
14 lines
398 B
JSON
14 lines
398 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": "./",
|
|
"declarationDir": "dist",
|
|
"outDir": "compiled",
|
|
"rootDirs": [".", "stories"],
|
|
"incremental": true,
|
|
"tsBuildInfoFile": "./tsconfig.tsbuildinfo"
|
|
},
|
|
"exclude": ["dist", "node_modules"],
|
|
"extends": "@grafana/tsconfig",
|
|
"include": ["src/**/*.ts*", "../../public/app/types/*.d.ts", "../grafana-schema/src/schema/models.gen.ts"]
|
|
}
|