Files
vercel__next.js/examples/hello-world/tsconfig.json
Jiwon Choi 61136d8e4b [devtools] Remove title from preferences (#85698)
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"
/> |
2025-11-02 13:14:20 +01:00

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"]
}