tsproject
tsproject copied to clipboard
Typescript minifier and modular typescript bundle optimizer for gulp (Ts Vinyl Adapter).
Bumps [hosted-git-info](https://github.com/npm/hosted-git-info) from 2.8.8 to 2.8.9. Changelog Sourced from hosted-git-info's changelog. 2.8.9 (2021-04-07) Bug Fixes backport regex fix from #76 (29adfe5), closes #84 Commits 8d4b369 chore(release): 2.8.9 29adfe5 fix: backport...
Bumps [y18n](https://github.com/yargs/y18n) from 3.2.1 to 3.2.2. Commits See full diff in compare view Maintainer changes This version was pushed to npm by oss-bot, a new releaser for y18n since your...
Bumps [y18n](https://github.com/yargs/y18n) from 3.2.1 to 3.2.2. Commits See full diff in compare view Maintainer changes This version was pushed to npm by oss-bot, a new releaser for y18n since your...
Bumps [ini](https://github.com/isaacs/ini) from 1.3.5 to 1.3.8. Commits a2c5da8 1.3.8 af5c6bb Do not use Object.create(null) 8b648a1 don't test where our devdeps don't even work c74c8af 1.3.7 024b8b5 update deps, add linting...
Bumps [ini](https://github.com/isaacs/ini) from 1.3.5 to 1.3.8. Commits a2c5da8 1.3.8 af5c6bb Do not use Object.create(null) 8b648a1 don't test where our devdeps don't even work c74c8af 1.3.7 024b8b5 update deps, add linting...
Currently, TsProject emits all build files ( js, d.ts, map ) to disk ( depending on the project tsconfig.json file ). For Gulp, the built files should only flow through...
TsProject release 4.0.0, supporting Typescript 4.0, primarily served as a single typescript module bundler for gulp as a vinyl file adaptor. It included a Typescript compiler, a module bundler with...
Is `tsproject` able to bundle TS definitions in a single `.d.ts` file in the following form? ``` typescript declare module 'bundle-name' { // project definititions } ``` It would be...
Placeholder for discussion to add source maps for minified bundles.
TsProject outputs: ``` export declare namespace ModuleName { ... } ``` but for a CommonJS module it should perhaps output: ``` declare namespace ModuleName { ... } export = ModuleName;...