mirror of
https://github.com/vercel/next.js.git
synced 2026-09-20 02:25:18 +08:00
61136d8e4b
The heading sections in DevTools regressed. We decided to remove them as "Dev Server" settings are obviously dev server settings, no need to differentiate as separate tabs. | Before | After | |--------|--------| | <img width="1024" height="1006" alt="CleanShot 2025-11-02 at 12 59 21@2x" src="https://github.com/user-attachments/assets/0a8b0c2f-3f0a-487d-9344-b33b5ee016f5" /> | <img width="1024" height="1006" alt="CleanShot 2025-11-02 at 12 59 07@2x" src="https://github.com/user-attachments/assets/ddd3b029-8957-4129-aaf2-7b1a57a52e00" /> |
32 lines
681 B
JSON
32 lines
681 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es5",
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
"strict": false,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noEmit": true,
|
|
"esModuleInterop": true,
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"jsx": "react-jsx",
|
|
"incremental": true,
|
|
"plugins": [
|
|
{
|
|
"name": "next"
|
|
}
|
|
]
|
|
},
|
|
"include": [
|
|
"next-env.d.ts",
|
|
"**/*.ts",
|
|
"**/*.tsx",
|
|
".next/types/**/*.ts",
|
|
".next/dev/types/**/*.ts"
|
|
],
|
|
"exclude": ["node_modules", "**/*.test.ts", "**/*.test.tsx"]
|
|
}
|