Adds SessionProvider to main.tsx, creates ClientLayout with minimal top bar, AuthCallback for magic link handling, ClientTabloPage with all 7 tabs using tablo-views components, and ClientTabloListPage with auto-redirect for single tablo. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
31 lines
945 B
JSON
31 lines
945 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2020",
|
|
"useDefineForClassFields": true,
|
|
"lib": ["ES2020", "DOM", "DOM.Iterable"],
|
|
"types": ["vite/client"],
|
|
"module": "ESNext",
|
|
"skipLibCheck": true,
|
|
"moduleResolution": "bundler",
|
|
"allowImportingTsExtensions": true,
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"noEmit": true,
|
|
"jsx": "react-jsx",
|
|
"strict": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@xtablo/ui": ["../../packages/ui/src"],
|
|
"@xtablo/ui/*": ["../../packages/ui/src/*"],
|
|
"@xtablo/shared": ["../../packages/shared/src"],
|
|
"@xtablo/shared/*": ["../../packages/shared/src/*"],
|
|
"@xtablo/tablo-views": ["../../packages/tablo-views/src"],
|
|
"@xtablo/tablo-views/*": ["../../packages/tablo-views/src/*"]
|
|
}
|
|
},
|
|
"include": ["src"],
|
|
"references": []
|
|
}
|