refactor: Use next.js instead of vite

This commit is contained in:
bracesproul
2025-04-10 11:47:43 -07:00
parent aaee53e3e6
commit 25524792ec
18 changed files with 3761 additions and 5448 deletions

View File

@@ -1,13 +1,34 @@
{
"files": [],
"references": [
{ "path": "./tsconfig.app.json" },
{ "path": "./tsconfig.node.json" }
],
"compilerOptions": {
"baseUrl": ".",
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "bundler",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"incremental": true,
"plugins": [
{
"name": "next"
}
],
"paths": {
"@/*": ["./src/*"]
}
}
},
"target": "ES2017"
},
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
".next/types/**/*.ts",
"src/hooks/use-threads",
"src/app/thread/[threadId]"
],
"exclude": ["node_modules"]
}