mirror of
https://github.com/grafana/grafana.git
synced 2024-11-23 09:26:43 -06:00
5fad5511e9
* 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
23 lines
531 B
JSON
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"
|
|
]
|
|
}
|