mirror of
https://github.com/grafana/grafana.git
synced 2024-12-02 05:29:42 -06:00
f6130db03d
* Clarify readme for extended webpack config * Add support for ES2019 features * Build task: path.resolve → resolvePath * Build task: avoid fs race conditions * Build task: use async fs functions * Build task: use rimraf directly ... because depending on the workspace parent to have it installed is fragile, and a child process is always slower. * Build task: misc
15 lines
377 B
JSON
15 lines
377 B
JSON
{
|
|
"extends": "../tsconfig.json",
|
|
"include": ["src/**/*.ts", "../../public/app/types/jquery/*.ts"],
|
|
"exclude": ["dist", "node_modules"],
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"rootDirs": ["."],
|
|
"outDir": "dist/src",
|
|
"declaration": true,
|
|
"declarationDir": "dist/src",
|
|
"typeRoots": ["./node_modules/@types"],
|
|
"esModuleInterop": true
|
|
}
|
|
}
|