8bad33de4c
* fix(grafana-data): copy theme schema json to types so declaration resolves * refactor(grafana-data): move node scripts out of source code * feat(grafana-data): generate types for theme schema * chore(codeowners): update for grafana-data/scripts file move * feat(grafana-data): put back copy plugin for theme json files * revert(grafana-data): remove definition output * feat(grafana-data): make builds great again * minor tidy up --------- Co-authored-by: Ashley Harrison <ashley.harrison@grafana.com>
23 lines
559 B
JSON
23 lines
559 B
JSON
{
|
|
"extends": "../../scripts/tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"declaration": true,
|
|
"jsx": "react-jsx",
|
|
"baseUrl": "./",
|
|
"declarationDir": "./dist/types",
|
|
"emitDeclarationOnly": true,
|
|
"isolatedModules": true,
|
|
"rootDirs": ["."],
|
|
"moduleResolution": "bundler",
|
|
"resolveJsonModule": true
|
|
},
|
|
"exclude": ["dist/**/*"],
|
|
"include": [
|
|
"src/**/*.ts*",
|
|
"typings/jest",
|
|
"../../public/app/types/jquery/*.ts",
|
|
"../../public/app/types/*.d.ts",
|
|
"../grafana-ui/src/types/react-table-config.d.ts"
|
|
]
|
|
}
|