UNPKG

tsbunch

Version:

A VERY basic TypeScript bundler that doesn't compile to JS

7 lines (6 loc) 255 B
/** * Bundles multiple TypeScript files into a single TypeScript file without * compiling the code. */ declare const tsbunch: (entryFileLocation: string, outputFile?: string, declarationsFiles?: string | Array<string>) => void; export default tsbunch;