-
Notifications
You must be signed in to change notification settings - Fork 13.2k
Closed as not planned
Labels
Domain: Declaration EmitThe issue relates to the emission of d.ts filesThe issue relates to the emission of d.ts filesEffort: CasualGood issue if you're already used to contributing to the codebase. Harder than "good first issue".Good issue if you're already used to contributing to the codebase. Harder than "good first issue".Experimentation NeededSomeone needs to try this out to see what happensSomeone needs to try this out to see what happensHelp WantedYou can do thisYou can do thisWon't FixThe severity and priority of this issue do not warrant the time or complexity needed to fix itThe severity and priority of this issue do not warrant the time or complexity needed to fix it
Milestone
Description
Bug Report
π Search Terms
stripInternal
π Version & Regression Information
- This is a crash
- This is the behavior in every version I tried, and I reviewed the FAQ for entries about
stripInternal
β― Playground Link
Playground link with relevant code
π» Code
/module.ts
/** @internal */
export type Thing = string;
// this is not @internal (using at character)
export type Thing2 = number;
// this is also not internal (not using at character)
export type Thing3 = boolean;π Actual behavior
/module.d.ts
export declare type Thing3 = boolean;π Expected behavior
/module.d.ts
export declare type Thing2 = number;
export declare type Thing3 = boolean;Metadata
Metadata
Assignees
Labels
Domain: Declaration EmitThe issue relates to the emission of d.ts filesThe issue relates to the emission of d.ts filesEffort: CasualGood issue if you're already used to contributing to the codebase. Harder than "good first issue".Good issue if you're already used to contributing to the codebase. Harder than "good first issue".Experimentation NeededSomeone needs to try this out to see what happensSomeone needs to try this out to see what happensHelp WantedYou can do thisYou can do thisWon't FixThe severity and priority of this issue do not warrant the time or complexity needed to fix itThe severity and priority of this issue do not warrant the time or complexity needed to fix it