dts-bundle icon indicating copy to clipboard operation
dts-bundle copied to clipboard

Export TypeScript .d.ts files as an external module definition

Results 34 dts-bundle issues
Sort by recently updated
recently updated
newest added

fixes #53 Exclude node_modules files when cleaning up declarations with the removeSource flag enabled

When using the `removeSource` option. If your bundle references a `.d.ts` file inside `node_modules` it deletes this file. I would expect it to ignore anything outside the project when cleaning...

Multiline import / exports are currently not processed: ``` export { ChangeHook, EnterHook, InjectedRouter, LeaveHook, ParseQueryString, RouteComponent, RouteComponents, RouteComponentProps, RouteConfig, RoutePattern, RouterProps, RouterState, RedirectFunction, StringifyQuery } from "./lib/Router"; ```

Hi, it looks like [union types](https://www.typescriptlang.org/docs/handbook/advanced-types.html ) are breaking the bundling process. original: ``` export type MyType = "a" | "b" | "c"; export const AnotherType = { One: "a"...