turbopack and app router; very annoying to work with!

This commit is contained in:
2025-05-31 22:06:24 -04:00
parent 657f4b1e41
commit f477ba21ea
35 changed files with 125 additions and 310 deletions

View File

@@ -1,11 +1,7 @@
{
"compilerOptions": {
"target": "es2023",
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
@@ -18,13 +14,22 @@
"isolatedModules": true,
"jsx": "preserve",
"importHelpers": true,
"incremental": true
"incremental": true,
"plugins": [
{
"name": "next"
}
],
"paths": {
"@/*": ["./src/*"]
}
},
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
"lib/slug.js"
"lib/slug.js",
".next/types/**/*.ts"
],
"exclude": [
"node_modules"