You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Updated the function findUnusedExports to no longer ignore dotfiles when executing the module glob.
Changed the function findUnusedExports option moduleGlob and the CLI command find-unused-exports argument --module-glob default value from **/{!(*.d).mts,!(*.d).cts,*.{mjs,cjs,js}} to **/{!(*.d).mts,!(*.d).cts,!(*.d).ts,*.{mjs,cjs,js,tsx}}; .ts and .tsx files (but not TypeScript definition files) are now recursively matched by default.
Support resolving additional kinds of TypeScript source modules (if the exist) depending on the import specifier path file extension:
.cjs resolves .cts.
.js resolves .ts and .tsx.
Use the TypeScript v5.5+ JSDoc tag @import to import types in modules.
Minor
Enable TypeScript syntax when parsing .ts and .tsx files with Babel, even when the project has no Babel config for TypeScript.
Enable JSX syntax when parsing .tsx files with Babel, even when the project has no Babel config for JSX.
Patch
Updated the package.json field repository to conform to new npm requirements.