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
There are only two files in the directory exporter.ts and importer.ts
exporter.ts
export let a=5,b=6,c=10;
and importer.ts
import {b} from "./exporter.ts"
then only a is marked as unused export and c is not marked even if its not imported anywhere
The text was updated successfully, but these errors were encountered:
mrseanryan
changed the title
False negative when exporting using export declaration
False negative when exporting using export declaration - multiple declarations in one statement
Aug 9, 2023
There are only two files in the directory
exporter.ts
andimporter.ts
exporter.ts
and importer.ts
then only a is marked as unused export and c is not marked even if its not imported anywhere
The text was updated successfully, but these errors were encountered: