kevinmcaleer_obsidian-dashb.../tsconfig.json
Kevin McAleer 0c85108dbc Initial dashboards plugin
- Rows and columns layout in a 12-column responsive grid
- Six widget types: markdown, chart, embed, stat, link, heading
- Read/edit mode toggle with pencil icon in top-right
- Widget editor modal with type-specific fields
- Chart widgets delegate to bases-chart via MarkdownRenderer
- Inline chart config OR link to note containing a chart block
- Stats, link cards, heading widgets for KPI dashboards
- Mobile responsive (columns stack below 768px)
- GitHub Actions release workflow matching bases-chart
2026-04-16 20:56:13 +01:00

17 lines
388 B
JSON

{
"compilerOptions": {
"baseUrl": ".",
"inlineSourceMap": true,
"inlineSources": true,
"module": "ESNext",
"target": "ES6",
"allowJs": true,
"noImplicitAny": true,
"moduleResolution": "node",
"importHelpers": true,
"isolatedModules": true,
"strictNullChecks": true,
"lib": ["DOM", "ES5", "ES6", "ES7"]
},
"include": ["src/**/*.ts"]
}