Skip to content
Merged
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
1 change: 0 additions & 1 deletion src/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
/* Visit https://aka.ms/tsconfig to read more about this file */
"moduleDetection": "force",
"lib": ["ES2023", "DOM"],
"types": ["node", "jquery"],
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

Action required

1. No test for tsconfig fix šŸ“˜ Rule violation ☼ Reliability

This PR fixes a warning-causing bug (duplicate types key) but does not add an automated regression
test/check that would fail if the duplicate key were reintroduced. Without a test, the issue can
silently regress in future changes.
Agent Prompt
## Issue description
A bug fix was made to `src/tsconfig.json` (removing a duplicate `types` key), but there is no automated regression test/check to prevent reintroducing duplicate keys.

## Issue Context
Build tooling already emitted a warning about the duplicate key. A lightweight CI check (test or lint-like script) should fail if `src/tsconfig.json` contains duplicate keys (especially `types`) so the fix is verifiable and non-regressing.

## Fix Focus Areas
- src/tsconfig.json[6-6]

ā“˜ Copy this prompt and use it to remediate the issue with your preferred AI generation tools

/* Language and Environment */
"target": "es6", /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */
/* Modules */
Expand Down
Loading