Fix TSConfig Paths Registration Error on Node 23+#208
Merged
Conversation
Semantic Version Check Passed ✅Version in manifest file This comment will be automatically updated as changes are pushed to this PR branch. |
Contributor
There was a problem hiding this comment.
Pull Request Overview
This pull request fixes TSConfig paths registration errors on Node 23+ by refactoring the bootstrap module to use dynamic imports instead of require statements, along with project configuration improvements and developer tooling enhancements.
- Refactored
src/bootstrap.tsto use ES modules with dynamic imports for Node 23+ compatibility - Added comprehensive project documentation and VS Code configuration for Copilot
- Updated package version and enhanced CodeQL analysis configuration
Reviewed Changes
Copilot reviewed 8 out of 10 changed files in this pull request and generated 3 comments.
Show a summary per file
| File | Description |
|---|---|
| src/bootstrap.ts | Refactored from require() to dynamic imports for ES module compatibility |
| src/commands/run.ts | Added quiet option to dotenv config |
| package.json | Version bump to 5.1.0 |
| .vscode/settings.json | Added Copilot configuration for code review and commit messages |
| .vscode/mcp.json | Added MCP server configuration |
| .github/copilot-instructions.md | Added comprehensive developer guidelines |
| .github/codeql/codeql-config.yml | Added CodeQL configuration with path exclusions |
| .github/workflows/codeql-analysis.yml | Updated to use custom CodeQL config file |
🦙 MegaLinter status: ✅ SUCCESS
See detailed report in MegaLinter reports |
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.

This pull request introduces several updates to improve project configuration, enhance developer guidelines, and refactor code for better modularity and maintainability. Key changes include the addition of a CodeQL configuration file, comprehensive Copilot usage instructions, new VS Code settings for Copilot, and the refactoring of module imports in
src/bootstrap.ts.Closes #207