We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aaea8d3 commit 389c9d5Copy full SHA for 389c9d5
gulpfile.js
@@ -14,7 +14,7 @@ gulp.task('scripts', function(done) {
14
var ts = require('gulp-typescript');
15
var tsProject = ts.createProject('tsconfig.json', { typescript: require('typescript') });
16
17
- var tsResult = gulp.src(['./**/*.ts', '!./node_modules/**/*.ts'], { base: '.' })
+ var tsResult = gulp.src(['./**/*.ts','./**/*.tsx', '!./node_modules/**/*.ts','!./node_modules/**/*.tsx'], { base: '.' })
18
.pipe(tsProject());
19
tsResult.js.pipe(gulp.dest('./'))
20
.on('end', function() {
0 commit comments