Conversation
chvmvd
commented
Oct 21, 2025
Collaborator
Author
There was a problem hiding this comment.
TypeScript 5.9以降でデフォルトで生成されるものに置き換えました。
Collaborator
Author
There was a problem hiding this comment.
npm create vite@latestで生成される最新のファイルに合わせました。
There was a problem hiding this comment.
Pull Request Overview
This PR updates all packages to their latest versions, with TypeScript 5.9 introducing a significantly redesigned tsconfig.json template. The updates address previously reported issues with module and target options and align configurations with the latest Vite output.
- Updated TypeScript to 5.9 with new minimal tsconfig template
- Updated React, Vite, ESLint and other dependencies to latest versions
- Added
typesfield to TypeScript configurations for better type resolution
Reviewed Changes
Copilot reviewed 7 out of 10 changed files in this pull request and generated 3 comments.
Show a summary per file
| File | Description |
|---|---|
| frontend/tsconfig.node.json | Added types field for node type definitions |
| frontend/tsconfig.app.json | Added types field for Vite client types |
| frontend/package.json | Updated all dependencies to latest versions |
| frontend/eslint.config.js | Added defineConfig import for ESLint configuration |
| backend/tsconfig.json | Complete restructure using TypeScript 5.9's minimal template with updated options |
| backend/package.json | Updated Prisma, tsx, and TypeScript to latest versions |
| README.md | Updated setup instructions to reflect new tsconfig.json structure |
Files not reviewed (2)
- backend/package-lock.json: Language not supported
- frontend/package-lock.json: Language not supported
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
337122d to
c080b9b
Compare
chelproc
approved these changes
Nov 22, 2025
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
すべてのパッケージを最新にアップデートし、TypeScript 5.9に対応しました。
npx tsc --initで生成されるtsconfig.jsonが大幅に変わりました。(cf. https://devblogs.microsoft.com/typescript/announcing-typescript-5-9/#minimal-and-updated-tsc---init )これにより、テンプレートを作成 #1 で指摘されていたmoduleオプションおよびtargetオプションに関わる問題はすべて解消されました。npm create vite@latestで生成されるファイルが少し変わったため、それを反映しました。