Todd Thomson
Todd Thomson
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...
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;...
TsProject does not currently support import aliases to resolve duplicate identifier names. The simple scenario is: ``` import { foo } from "somesourcemodule"; import { foo as foo2 } from...
Since TsProject bundles ES6 external modules into a single javascript library, you cannot have a "loose" collection of functions( classes, variables, etc ) within a source file. Wrap the functions...