grafana/tsconfig.json
Jack Westbrook 5fad5511e9
Build: Enable persistent cache for faster Webpack builds (#41430)
* build(webpack): enable caching for development and production builds

* build(webpack): introduce unminified production build script

* build(typescript): introduce incremental flag to cache typechecking

* chore(git): ignore typescript cache file

* chore(webpack): bump dependencies to latest
2021-11-11 14:32:34 +01:00

23 lines
531 B
JSON

{
"compilerOptions": {
"jsx": "react",
"baseUrl": "public/",
"outDir": "public/dist",
"rootDirs": ["public/"],
"allowJs": true,
"strict": true,
"resolveJsonModule": true,
"useUnknownInCatchVariables": false,
"incremental": true
},
"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"
]
}