mirror of
https://github.com/OneUptime/oneuptime.git
synced 2026-04-06 00:32:12 +02:00
- Implemented DashboardCanvas component for rendering dashboard. - Created Index.tsx for application entry point with routing setup. - Developed AllPages.tsx to export main pages: DashboardView, MasterPassword, NotFound, and Forbidden. - Added DashboardVariableSelector for managing dashboard variables. - Built DashboardViewPage to display the dashboard with variable selection and auto-refresh functionality. - Created Forbidden and NotFound pages for access control and error handling. - Implemented MasterPassword page for secure access to dashboards. - Added server-side utility for fetching public dashboard data. - Established API utility for handling requests specific to the public dashboard. - Configured routing and page mapping for public dashboard navigation. - Set up TypeScript configuration for the PublicDashboard FeatureSet. - Created index.ejs for rendering the public dashboard application.
44 lines
1.3 KiB
JSON
44 lines
1.3 KiB
JSON
{
|
|
"ts-node": {
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"resolveJsonModule": true
|
|
}
|
|
},
|
|
"compilerOptions": {
|
|
"target": "es2017",
|
|
"jsx": "react",
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"module": "es2022",
|
|
"moduleResolution": "node",
|
|
"typeRoots": [
|
|
"./node_modules/@types"
|
|
],
|
|
"types": ["node"],
|
|
"sourceMap": true,
|
|
"outDir": "./build/dist",
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"strict": true,
|
|
"noImplicitAny": true,
|
|
"strictNullChecks": true,
|
|
"strictFunctionTypes": true,
|
|
"strictBindCallApply": true,
|
|
"strictPropertyInitialization": true,
|
|
"noImplicitThis": true,
|
|
"useUnknownInCatchVariables": true,
|
|
"alwaysStrict": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"exactOptionalPropertyTypes": true,
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"noImplicitOverride": true,
|
|
"noPropertyAccessFromIndexSignature": true,
|
|
"skipLibCheck": true,
|
|
"resolveJsonModule": true
|
|
}
|
|
}
|