Frontend: - next 15 → 16.2.6, react 19.0 → 19.2.6, eslint-config-next updated to match - Add missing axios dependency (was implicit, broke build) - Fix VideoPlayer.tsx broken absolute import path (pre-existing bug) - Fix uploads route handler params to async (Next.js 16 breaking change) - Remove deprecated images.domains → remotePatterns in next.config.js - Remove experimental.serverActions (promoted to stable, then removed in v16) - Update lint script: next lint removed in v16, now uses eslint directly Backend: - express 4 → 5.2.1, mongoose 8 → 9.6.2 - bcrypt 5 → 6, helmet 7 → 8, zod 3 → 4
42 lines
721 B
JSON
42 lines
721 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2017",
|
|
"lib": [
|
|
"dom",
|
|
"dom.iterable",
|
|
"esnext"
|
|
],
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
"strict": false,
|
|
"noEmit": true,
|
|
"incremental": true,
|
|
"module": "esnext",
|
|
"esModuleInterop": true,
|
|
"moduleResolution": "bundler",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"jsx": "react-jsx",
|
|
"plugins": [
|
|
{
|
|
"name": "next"
|
|
}
|
|
],
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": [
|
|
"src/*"
|
|
]
|
|
}
|
|
},
|
|
"include": [
|
|
"next-env.d.ts",
|
|
".next/types/**/*.ts",
|
|
"**/*.ts",
|
|
"**/*.tsx",
|
|
".next/dev/types/**/*.ts"
|
|
],
|
|
"exclude": [
|
|
"node_modules"
|
|
]
|
|
}
|