Revert "feat: migrate React.dev to the App Router (#7437)" (#7466)

This reverts commit 0eb0f889b1.
This commit is contained in:
dan
2025-02-01 19:21:43 +00:00
committed by GitHub
parent 0eb0f889b1
commit af0358f1d2
70 changed files with 1628 additions and 1798 deletions

View File

@@ -1,12 +1,16 @@
{
"compilerOptions": {
"target": "es5",
"lib": ["dom", "dom.iterable", "esnext"],
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"noImplicitAny": true,
"noImplicitReturns": false,
"noImplicitReturns": true,
"noImplicitThis": true,
"strictNullChecks": true,
"forceConsistentCasingInFileNames": true,
@@ -18,20 +22,14 @@
"isolatedModules": true,
"jsx": "preserve",
"baseUrl": "src",
"incremental": true,
"plugins": [
{
"name": "next"
}
]
"incremental": true
},
"include": [
"next-env.d.ts",
"src/**/*.ts",
"src/**/*.tsx",
".next/types/**/*.ts",
"types.d.ts",
"src/components/UwuScript.jsx"
"src/**/*.tsx"
],
"exclude": ["node_modules"]
"exclude": [
"node_modules"
]
}