-
Notifications
You must be signed in to change notification settings - Fork 15
fix: lint issues #363
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
fix: lint issues #363
Conversation
|
How to use the Graphite Merge QueueAdd either label to this PR to merge it via the merge queue:
You must have a Graphite account in order to use the merge queue. Sign up using this link. An organization admin has enabled the Graphite Merge Queue in this repository. Please do not merge from GitHub as this will restart CI on PRs being processed by the merge queue. This stack of pull requests is managed by Graphite. Learn more about stacking. |
|
| Command | Status | Duration | Result |
|---|---|---|---|
nx affected -t lint typecheck test --parallel -... |
❌ Failed | 6m 49s | View ↗ |
nx affected -t test:e2e --parallel --base=5635d... |
✅ Succeeded | 5m 36s | View ↗ |
☁️ Nx Cloud last updated this comment at 2025-11-12 23:09:42 UTC
9513006 to
313323d
Compare
313323d to
c7f3b20
Compare
| "moduleResolution": "bundler", | ||
| "composite": true |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Adding 'composite: true' requires additional configuration. Either remove this property or add required settings like 'rootDir' and 'outDir'. Composite projects have stricter requirements that may be causing TypeScript errors.
Spotted by Graphite Agent (based on CI logs)
Is this helpful? React 👍 or 👎 to let us know.
| tsconfigPath: resolve(__dirname, 'tsconfig.lib.json'), | ||
| skipDiagnostics: true // Skip TypeScript diagnostics to avoid vite-plugin-dts errors with monorepo project references. | ||
| // The plugin tries to compile all imported files (including from other packages) | ||
| // which breaks rootDir boundaries. Nx runs proper type checking separately. | ||
| }) | ||
| }) as any // Type cast to avoid Vite version mismatch between packages |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The property was renamed from 'tsConfigFilePath' to 'tsconfigPath' and a type cast was added. This might be causing compatibility issues. Verify the correct property name for the version of vite-plugin-dts being used and remove the type cast if possible.
Spotted by Graphite Agent (based on CI logs)
Is this helpful? React 👍 or 👎 to let us know.
| // ExtractFlowContext should include FlowContext & custom resources | ||
| type FlowCtx = ExtractFlowContext<typeof flow>; | ||
| // eslint-disable-next-line @typescript-eslint/no-explicit-any | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
An eslint-disable comment was removed. If this was intentional, ensure the code doesn't trigger the eslint rule that was being disabled. Otherwise, restore the comment.
Spotted by Graphite Agent (based on CI logs)
Is this helpful? React 👍 or 👎 to let us know.

No description provided.