feat(webui): add aggregate Campaign reports

This commit is contained in:
2026-07-22 08:44:15 +02:00
parent 06125cc0e8
commit fc36aee6c0
4 changed files with 348 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
{
"extends": "../../govoplan-core/webui/tsconfig.json",
"compilerOptions": {
"noUnusedLocals": true,
"noUnusedParameters": true,
"baseUrl": ".",
"paths": {
"@govoplan/core-webui": [
"../../govoplan-core/webui/src/index.ts"
],
"@govoplan/core-webui/app": [
"../../govoplan-core/webui/src/app.ts"
],
"react": [
"../../govoplan-core/webui/node_modules/@types/react/index.d.ts"
],
"react/jsx-runtime": [
"../../govoplan-core/webui/node_modules/@types/react/jsx-runtime.d.ts"
]
},
"typeRoots": [
"../../govoplan-core/webui/node_modules/@types"
]
},
"include": [],
"files": [
"../../govoplan-core/webui/src/vite-env.d.ts",
"src/features/reports/AggregateReportsPage.tsx"
]
}