- TanStack Start (React 19, Tailwind 4) frontend recreated from Stitch design - PocketBase backend with schema migration + idempotent content seed - Single Docker image running both services (non-root, healthchecked) - deploy.sh to build & push to registry.tanshu.com - Ansible playbook (roles: app, caddy) deploying to www.greatbear.in with Caddy TLS entries for the site and the PocketBase admin
22 lines
503 B
JSON
22 lines
503 B
JSON
{
|
|
"include": ["**/*.ts", "**/*.tsx", "**/*.d.ts"],
|
|
"compilerOptions": {
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"jsx": "react-jsx",
|
|
"module": "ESNext",
|
|
"moduleResolution": "Bundler",
|
|
"lib": ["DOM", "DOM.Iterable", "ES2024"],
|
|
"isolatedModules": true,
|
|
"resolveJsonModule": true,
|
|
"skipLibCheck": true,
|
|
"target": "ES2024",
|
|
"allowJs": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"paths": {
|
|
"~/*": ["./src/*"]
|
|
},
|
|
"noEmit": true
|
|
}
|
|
}
|