grafana/packages/grafana-e2e/tsconfig.json
Jack Westbrook efe9eed758
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
2022-03-04 09:26:25 +01:00

14 lines
342 B
JSON

{
"compilerOptions": {
"declarationDir": "dist",
"outDir": "compiled",
"rootDirs": ["."],
"types": ["cypress"],
"incremental": true,
"tsBuildInfoFile": "./tsconfig.tsbuildinfo"
},
"exclude": ["dist", "node_modules"],
"extends": "@grafana/tsconfig",
"include": ["src/**/*.ts", "cypress/support/index.d.ts"]
}