Compound Engineering plugin view now renders the dashboard's shared ViewHeader (Sparkles icon + title) so it matches the other main-content views. Expose ViewHeader via the dashboard exports map; resolve it in the plugin via an ambient interop declaration (no host runtime dependency). Tests updated (plugin suite green). Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
15 lines
427 B
JSON
15 lines
427 B
JSON
{
|
|
"extends": "../tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"outDir": "dist",
|
|
"rootDir": "src",
|
|
"jsx": "react-jsx",
|
|
"types": ["node", "vitest/globals"],
|
|
"paths": {
|
|
"@fusion/dashboard/app/plugins/types": ["./src/dashboard-interop.d.ts"],
|
|
"@fusion/dashboard/app/components/ViewHeader": ["./src/dashboard-interop.d.ts"]
|
|
}
|
|
},
|
|
"include": ["src/**/*.ts", "src/**/*.tsx", "src/**/*.d.ts"]
|
|
}
|