gulp-tsconfig-files
v0.4.0
Published
Update tsconfig files array with glob
Downloads
102
Readme
Tsconfig Files
Populate the tsconfig
files
array using a glob
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
}