All Projects → icholy → Gulp Tsconfig Files

icholy / Gulp Tsconfig Files

Licence: mit

Programming Languages

javascript
184084 projects - #8 most used programming language

Tsconfig Files

Populate the tsconfig files array using a glob

Note: TypeScript 2 supports using globs in tsconfig.json

Example

var tsconfig = require('gulp-tsconfig-files');

gulp.task('tsconfig_files', function () {
  gulp.src(['scripts/**/*.ts'])
    .pipe(tsconfig());
});

Options

{
  absolute:     true,            // default: false
  path:         'tsconfig.json', // default: 'tsconfig.json'
  indent:       2,               // default: 2
  newline_eof:  true,            // default: false
  relative_dir: 'some/folder/',  // default: '.'
  posix:        true,            // default: false
  sort:         false            // default: true
}
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].