Conversation
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: 933187d65a
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
| "compilerOptions": { | ||
| "rootDir": "./src", | ||
| "outDir": "./dist", | ||
| "baseUrl": "./", | ||
| "target": "ES2020", | ||
| "target": "ES2023", |
There was a problem hiding this comment.
Restore strict type checking in root tsconfig
The root TypeScript config no longer sets strict: true, which disables key safety checks (such as noImplicitAny and strictNullChecks) for the plugin source. This makes it easier for type regressions to pass CI and leak into published declaration output, which is a maintainability regression not required for the TypeScript 6 migration itself.
Useful? React with 👍 / 👎.
Summary
^6.0.2and update the repo tsconfigignoreDeprecations, and declare CSS side-effect imports in the test appTesting
pnpm buildpnpm testRelated Links