chore: update dependencies and fix TypeScript config#10
Merged
Conversation
There was a problem hiding this comment.
Pull request overview
Updates project tooling versions and aligns TypeScript configuration formatting with the referenced Modern.TiddlyDev baseline.
Changes:
- Bump dev tooling dependencies (TypeScript, tw5-typed, @types/*, etc.) and tiddlywiki-plugin-dev.
- Reformat
tsconfig.jsonand remove the explicitbaseUrloption.
Reviewed changes
Copilot reviewed 1 out of 2 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
| tsconfig.json | Reformats TS config and drops baseUrl from compiler options. |
| package.json | Updates dependency versions for TypeScript/tooling and tiddlywiki-plugin-dev. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Comment on lines
+39
to
+57
| "devDependencies": { | ||
| "@modern-js/tsconfig": "^3.1.3", | ||
| "@types/jasmine": "^6.0.0", | ||
| "@types/node": "^25.6.0", | ||
| "dprint": "^0.54.0", | ||
| "eslint-config-tidgi": "^2.2.0", | ||
| "husky": "^9.1.7", | ||
| "lint-staged": "^16.4.0", | ||
| "postcss": "^8.5.9", | ||
| "rimraf": "^6.1.3", | ||
| "ts-node": "^10.9.2", | ||
| "tw5-typed": "^1.1.5", | ||
| "typescript": "^6.0.2" | ||
| }, | ||
| "dependencies": { | ||
| "npm-check-updates": "^20.0.1", | ||
| "tiddlywiki": "^5.3.8", | ||
| "tiddlywiki-plugin-dev": "^0.4.4" | ||
| } |
There was a problem hiding this comment.
Dependency versions were bumped in package.json, but pnpm-lock.yaml is present in the repo and isn’t updated in this PR. That can lead to non-reproducible installs and CI using older resolved versions. Please regenerate and commit pnpm-lock.yaml (and keep it in sync with these version changes).
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.
Updates shared deps and TypeScript config to match Modern.TiddlyDev standard: typescript ^6.0.2, tiddlywiki-plugin-dev ^0.4.4, NodeNext module resolution. Only deps already present are updated.