chore(web): apply prettier 3.8 + Next 16 tsconfig auto-formatting

Side effects from `bun run format` (prettier 3.8) and `bun run build`
(Next 16) that I missed in the prior commit:

- web/components/ui/badge.tsx, web/components/ui/button.tsx: prettier 3.8
  inlines short interface `extends` lists onto a single line.
- web/tsconfig.json: Next 16's build step auto-modernizes tsconfig:
  `jsx: "preserve"` → `jsx: "react-jsx"` and reformats `lib`/`paths`
  arrays to multi-line. Build is identical either way; committing the
  modernized shape so subsequent `next build` runs do not produce
  spurious diffs.
This commit is contained in:
YeonGyu-Kim
2026-05-08 14:08:06 +09:00
parent e5eda117be
commit dff2acf38a
3 changed files with 3 additions and 5 deletions
+1 -1
View File
@@ -11,7 +11,7 @@
"moduleResolution": "bundler",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"jsx": "react-jsx",
"incremental": true,
"noUncheckedIndexedAccess": true,
"noUnusedLocals": true,