Skip to content

icholy/gulp-tsconfig-files

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

46 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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
}

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published