- File-based routing with tanstack router
- Persist top-level navigation state in url, even for most legacy pages
- Striving for an intuitive and simple folder structure where
route-related code is colocated, but the amount of files is still
kept to a minimum
- Replace native fetch with `ky`
- Familiar api, but more polished
23 lines
658 B
JSON
23 lines
658 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2024",
|
|
"useDefineForClassFields": true,
|
|
"lib": ["ES2024", "DOM", "DOM.Iterable"],
|
|
"module": "ESNext",
|
|
"moduleResolution": "Bundler",
|
|
"paths": {
|
|
"@/*": ["./src/*"]
|
|
},
|
|
"strict": true,
|
|
"jsx": "react-jsx",
|
|
"allowJs": false,
|
|
"esModuleInterop": true,
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"skipLibCheck": true,
|
|
"noEmit": true,
|
|
"types": ["node", "vitest/globals", "@testing-library/jest-dom", "react", "react-dom"]
|
|
},
|
|
"include": ["./src", "./tests", "./vitest.setup.ts", "./vite.config.ts", "./playwright.config.ts"],
|
|
"references": []
|
|
}
|