Chore: Move Typescript cache file to root (#45964)

* chore(typescript): move TS cache file to root of repo

* chore(typescript): cache packages ts checks to disk for faster yarn typecheck
This commit is contained in:
Jack Westbrook
2022-03-04 09:26:25 +01:00
committed by GitHub
parent a404dba29d
commit efe9eed758
8 changed files with 21 additions and 8 deletions

View File

@@ -2,7 +2,9 @@
"compilerOptions": {
"declarationDir": "dist",
"outDir": "compiled",
"rootDirs": ["."]
"rootDirs": ["."],
"incremental": true,
"tsBuildInfoFile": "./tsconfig.tsbuildinfo"
},
"exclude": ["dist", "node_modules"],
"extends": "@grafana/tsconfig",