* wip: updating settings layout * most issues resolved * settings layout revamped * fix:multiple unrequired toast on formatter settings resolved * feat: updated ai-models tabs to extract common components and logic * chore: formatting fix * chore: code cleanup * fix: forward navigation handling * fix: model selections ux * fix: vocabulary update flow * chore: update lang list * chore: cleanup migrations * fix: invalid drag class on back buttont * chore: swap to tanstack router * fix: history navigation * chore: clean up + models unification * chore: cleanup migrations * refactor: settings deep merges --------- Co-authored-by: amadeus-x1 <45001978+amadeus-x1@users.noreply.github.com>
30 lines
668 B
JSON
30 lines
668 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"module": "ESNext",
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
"types": ["node", "vite/client"],
|
|
"esModuleInterop": true,
|
|
"noImplicitAny": true,
|
|
"sourceMap": true,
|
|
"outDir": "dist",
|
|
"moduleResolution": "bundler",
|
|
"resolveJsonModule": true,
|
|
"jsx": "react-jsx",
|
|
"lib": ["DOM", "DOM.Iterable", "ESNext"],
|
|
"strict": true,
|
|
"baseUrl": ".",
|
|
"noEmit": true,
|
|
"paths": {
|
|
"@/*": ["src/*"]
|
|
}
|
|
},
|
|
"include": [
|
|
"src/**/*",
|
|
"forge.config.ts",
|
|
"vite.*.config.mts",
|
|
"drizzle.config.ts"
|
|
],
|
|
"exclude": ["node_modules", "dist", ".vite", "out"]
|
|
}
|