tsproject icon indicating copy to clipboard operation
tsproject copied to clipboard

Typescript minifier and modular typescript bundle optimizer for gulp (Ts Vinyl Adapter).

Results 30 tsproject issues
Sort by recently updated
recently updated
newest added

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...

dependencies

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...

dependencies

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...

dependencies

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...

dependencies

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...

dependencies

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...

Announcement

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...

enhancement
Investigating

Placeholder for discussion to add source maps for minified bundles.

enhancement

TsProject outputs: ``` export declare namespace ModuleName { ... } ``` but for a CommonJS module it should perhaps output: ``` declare namespace ModuleName { ... } export = ModuleName;...

bug