fabro/apps/fabro-web/tsconfig.json
Bryan Helmkamp 96359f95cb Fix login route collision after SPA cutover
Move the browser sign-in page off the backend /auth namespace so direct
navigation works, update Rust and frontend redirects to /login, and add
tests that lock the split between SPA login UI and backend OAuth endpoints.
2026-04-01 21:55:30 -07:00

27 lines
653 B
JSON

{
"include": [
"app/**/*",
"scripts/**/*"
],
"exclude": ["**/*.test.ts", "**/*.test.tsx"],
"compilerOptions": {
"lib": ["DOM", "DOM.Iterable", "ES2022"],
"types": ["node"],
"target": "ES2022",
"module": "ES2022",
"moduleResolution": "bundler",
"jsx": "react-jsx",
"baseUrl": ".",
"paths": {
"~/*": ["./app/*"],
"@qltysh/fabro-api-client": ["../../lib/packages/fabro-api-client/src/index.ts"]
},
"esModuleInterop": true,
"verbatimModuleSyntax": true,
"noEmit": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"strict": false,
"noImplicitAny": false
}
}