- Tauri v2 with SQLite plugin and full database schema - React with react-router-dom, i18n (FR/EN), recharts, lucide-react - TailwindCSS v4 with custom Bleu/Creme/Terracotta palette - App shell with sidebar navigation (7 pages) - Dashboard with summary cards, page stubs for all sections - Default category configuration (10 top-level categories) - TypeScript interfaces matching SQLite schema Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
25 lines
605 B
JSON
25 lines
605 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2020",
|
|
"useDefineForClassFields": true,
|
|
"lib": ["ES2020", "DOM", "DOM.Iterable"],
|
|
"module": "ESNext",
|
|
"skipLibCheck": true,
|
|
|
|
/* Bundler mode */
|
|
"moduleResolution": "bundler",
|
|
"allowImportingTsExtensions": true,
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"noEmit": true,
|
|
"jsx": "react-jsx",
|
|
|
|
/* Linting */
|
|
"strict": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noFallthroughCasesInSwitch": true
|
|
},
|
|
"include": ["src"],
|
|
"references": [{ "path": "./tsconfig.node.json" }]
|
|
}
|