mirror of
https://github.com/grafana/grafana.git
synced 2025-02-12 00:25:46 -06:00
7bceab4ad4
fix(grafana-toolkit): make sure to build into cli directory so relative paths work
16 lines
383 B
JSON
16 lines
383 B
JSON
{
|
|
"compilerOptions": {
|
|
"declarationDir": "dist/src/cli",
|
|
"module": "commonjs",
|
|
"outDir": "dist/src/cli",
|
|
"rootDirs": ["."],
|
|
"paths": {
|
|
"@grafana/toolkit": ["."]
|
|
},
|
|
"useUnknownInCatchVariables": false
|
|
},
|
|
"exclude": ["dist", "node_modules"],
|
|
"extends": "@grafana/tsconfig",
|
|
"include": ["src/**/*.ts", "../../public/app/types/jquery/*.ts"]
|
|
}
|