mirror of
https://github.com/fabro-sh/fabro.git
synced 2026-08-28 05:27:41 +00:00
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.
27 lines
653 B
JSON
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
|
|
}
|
|
}
|