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

A TypeScript compiler for gulp with incremental compilation support.

Results 62 gulp-typescript issues
Sort by recently updated
recently updated
newest added

Fixes the following error which was occurring for me: ``` Error: Invalid glob argument: at Object.src (/Users/emilyklassen/Code/mcs-repos/monorepo/node_modules/vinyl-fs/lib/src/index.js:20:11) ```

**Expected behavior:** It should work as [handbook](https://www.typescriptlang.org/docs/handbook/project-references.html) says: >Note that starting with 3.0, it is no longer an error to have an empty `files` array if you have at least...

Bug

**Expected behavior:** I would expect .metadata.json files to appear alongside .js, .d.ts and map files. Is this something that's achievable using gulp-typescript? I'm using this as a replacement to gulp-ngc...

**Expected behavior:** I'm not sure where the issue comes from. But here is the output from what I'm expecting. Look closely at the `Contents` with the `define("module-name"` I want that...

I am using gulp-typescript v3.1.6 and configured a gulp task with it: ```javascript const gulp = require('gulp'); const gulpTypeScript = require('gulp-typescript'); const tsProject = gulpTypeScript.createProject("tsconfig.json"); gulp.task('dist', () => { return...

Suggestion

**Expected behavior:** Source map maps the single line string in the generated javascript file to all lines of the original string **Actual behavior:** It only maps the the line with...

Hi, I'm trying to compile TypeScript files and pipe them into [gulp-rollup](https://www.npmjs.com/package/gulp-rollup). After almost an entire day of debugging, I think I've found a rarely occurring bug in `gulp-typescript`: **Expected...

Bug

**Expected behavior:** Specifying `"newLine": "LF"` in tsconfig.json will cause the compiler to emit the correct newlines **Actual behavior:** The compiler emits the native (CRLF) newlines **Your gulpfile:** https://github.com/screepers/screeps-typescript-starter/blob/master/gulpfile.js **tsconfig.json** *Include...

I would like to use a `tsconfig.json` file and incremental compilation together but there is no `tsproject.watch()` to watch all files defined in a `tsconfig.json` file.

Suggestion

It would be nice if there would be an option to emit referenced files, so that `tsProject.src()` streams them as well. This would make the configuration much simpler, match the...

Suggestion