gulp-typescript
gulp-typescript copied to clipboard
A TypeScript compiler for gulp with incremental compilation support.
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 [](https://help.github.com/articles/configuring-automated-security-fixes) Dependabot...
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...
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...
**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...
@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...
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...