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

I'm using this plugin to write [Google Apps Script](https://developers.google.com/apps-script/). Google Apps Script is perfect compatible with JavaScript. So, we can use typescript for Google Apps Script without any helping. However,...

Bug

https://github.com/ivogabe/gulp-typescript/blob/84213424172b6a70dc0602a1d9c4273abd29624b/lib/host.ts#L133 **Expected behavior:** Use cache when reading d.ts files **Actual behavior:** I'm using create project option and trying to build angular2 ``` _tsProject = g.typescript.createProject("tsconfig.json", { typescript: require("typescript"), outFile: config.isProd...

Suggestion

**Expected behavior:** successfully compiled typescript **Actual behavior:** **Your gulpfile:** ```js var gulp = require('gulp'); var less = require('gulp-less'); var ts = require('gulp-typescript'); gulp.task('default', function () { return gulp.src('src/less/index.less') .pipe(less()) //编译成为css...

**Expected behavior:** No errors when using Node 18 or higher. Bug in `source-map` dependency (fixed in latest version): https://github.com/mozilla/source-map/issues/454 **Actual behavior:** Getting the following: ``` [14:06:45] Error: You must provide...

I've tried to compileing ts files with custom tsconfig.json that contains **typeRoots** since I'm using custom types. But compiling only completed with tsc in manual, not with gulp-typescript... this issue...

### **Expected behavior:** gulp and tsc behaves the same, but I suspect I might be missing or missusing something. NOTE: as soon as `"composite": true` is removed from tsconfig, gulp...

**Expected behavior:** If I use `rootDirs` (plural) and not `rootDir` (singular) in tsconfig.json, only `rootDirs` should be passed to the compiler. **Actual behavior:** compiler.ts synthesizes a value for `rootDir`, which...

Added support for compilation of `.mts` to `.mjs` files and `.cts` to `.cjs` files

Bumps [decode-uri-component](https://github.com/SamVerschueren/decode-uri-component) from 0.2.0 to 0.2.2. Release notes Sourced from decode-uri-component's releases. v0.2.2 Prevent overwriting previously decoded tokens 980e0bf https://github.com/SamVerschueren/decode-uri-component/compare/v0.2.1...v0.2.2 v0.2.1 Switch to GitHub workflows 76abc93 Fix issue where decode...

dependencies