Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions lightrag_webui/bun.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion lightrag_webui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@
"typescript-eslint": "^8.59.2",
"tailwindcss": "^4.2.4",
"tailwindcss-animate": "^1.0.7",
"typescript": "~5.9.3",
"typescript": "~6.0.2",
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2 Badge Declare Node ambient types before bumping to TS 6

This major-version bump relies on TypeScript 6.0 defaults, but tsconfig.json does not set compilerOptions.types (it currently includes vite.config.ts and uses Node globals/modules there such as process, __dirname, and path). In TS 6, types defaults to [], so tsc/tsserver will start reporting missing Node identifiers unless we explicitly add Node typings (for example "types": ["node"]), which introduces immediate type-check regressions for local development and any CI job that runs TypeScript checks.

Useful? React with 👍 / 👎.

"vite": "^8.0.10"
}
}