gulp-tsc icon indicating copy to clipboard operation
gulp-tsc copied to clipboard

gulp.js plugin for compiling TypeScript files

Results 20 gulp-tsc issues
Sort by recently updated
recently updated
newest added

Bumps [lodash](https://github.com/lodash/lodash) from 2.4.2 to 4.17.19. Release notes Sourced from lodash's releases. 4.17.16 4.0.0 lodash v4.0.0 2015 was big year! Lodash became the most depended on npm package, passed 1...

dependencies

`[11:11:30] [tsc] > ` It looks like the lib "byline" is causing the issue but I'm not quite sure. Changing lines 227 to 235 in compiler.js "fixes" the issue. ```...

Fixing References are messed up on (d.ts) #40

Hello! I successfully compiled my .ts script using command line: ``` tsc source/ts/docmaster/document/Explorer.class.ts --module commonjs --target ES5 --out source/ts/d.ts/docmaster/docmaster.js --declaration --noEmitOnError --removeComments ``` In compiled .d.ts file I see correctly...

It will be useful to support specifying tsc command line arguments directly, as simple string. TSC is growing up, 1.4.1 is on air, and some new keys added - --suppressImplicitAnyIndexErrors...

With the newest (beta) compiler, I see this message on every compilation: `Compiling TypeScript files using tsc version null` Sounds like they might have changed that API? Not sure what...

The TypeScript compiler can take in all command line arguments via a temporary file, as described here: http://stackoverflow.com/questions/12699781/how-can-i-pass-multiple-source-files-to-the-typescript-compiler We encountered this error months and months ago prior to using gulp,...

Updated the Typescript package to 1.4.1, which is the latest stable release.

gulp-tsc uses a 'shellescape' function that processes the arguments passed to tsc. This function replaces backslashes by double backslashes. This results in invalid paths on Windows. Some Windows versions don't...