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

Bumps [acorn](https://github.com/acornjs/acorn) from 5.7.3 to 5.7.4. Commits 6370e90 Mark version 5.7.4 fbc15b1 More rigorously check surrogate pairs in regexp validator See full diff in compare view [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=acorn&package-manager=npm_and_yarn&previous-version=5.7.3&new-version=5.7.4)](https://help.github.com/articles/configuring-automated-security-fixes) Dependabot...

dependencies

I see TypeScript has a skipLibCheck option over at https://www.typescriptlang.org/docs/handbook/compiler-options.html. What is the `noLibCheck` option that I see in the type definition for gulp-typescript?

enables getting type-checking while enforcing --isolatedModules fix https://github.com/ivogabe/gulp-typescript/issues/613

Typescript 3.4 introduces emitting .tsbuildinfo files that are used for --incremental builds outside of --watch: https://devblogs.microsoft.com/typescript/announcing-typescript-3-4-rc/ gulp-typescript should emit the appropriate .tsbuildinfo files.

I'm trying to use gulp-typescript to generate javascript for some typescript files that don't use any module system; it concatenates all the files together and then compiles to produce a...

sourcemaps

Here's my gulpfile: ```js const gulp = require('gulp') const babel = require('gulp-babel') // const cached = require('gulp-cached') const typescript = require('gulp-typescript') const merge = require('merge-stream') const babelConfig = require('./babel.config') const...

sourcemaps

**Expected behavior:** Sourcemaps are generated properly even if intermediate plugins are used. **Actual behavior:** When I use gulp-header plugin in the gulp pipe, sourcemaps are generated but it is not...

sourcemaps

@edsrzf in #631 > I found it actually passed even before making the change because gulp-diff only checks the files that exist in the stream. For example, if the stream...

Bug

This is a first step in supporting incremental builds

**Expected behavior:** There is a way to get type-checking while using --isolatedModules **Actual behavior:** when passing --isolatedModules no type-checking is done. This is by design, but we want a way...