Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions frontend/next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,11 @@ const nextConfig = {
},
experimental: {
ppr: false,
// TypeScript 7 is the native rewrite and no longer exposes the JS compiler
// API Next.js links against, so the built-in type-check step cannot load
// it. This routes that step through the tsc CLI instead, which is the
// documented path for TS 7. Type errors still fail the build.
useTypeScriptCli: true,
},
typescript: {
ignoreBuildErrors: false,
Expand Down
12 changes: 6 additions & 6 deletions frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,28 +29,28 @@
"next": "^16.2.12",
"react": "^19.2.8",
"react-dom": "^19.2.8",
"react-dropzone": "^14.3.8",
"react-dropzone": "^19.1.1",
"sonner": "^2.0.7",
"tailwind-merge": "^3.6.0",
"zustand": "^5.0.14"
},
"devDependencies": {
"@biomejs/biome": "2.4.15",
"@playwright/test": "^1.61.0",
"@tailwindcss/postcss": "^4.3.3",
"@tauri-apps/cli": "^2",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/jest-dom": "^7.0.0",
"@testing-library/react": "^16.3.0",
"@types/node": "^22.19.1",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.4",
"autoprefixer": "^10.5.4",
"cross-env": "^10.1.0",
"jsdom": "^29.1.1",
"postcss": "^8.5.13",
"tailwindcss": "^3.4.18",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5.9.3",
"tailwindcss": "^4.3.3",
"tw-animate-css": "^1.4.0",
"typescript": "^7.0.2",
"vitest": "^4.1.10"
}
}
Loading