Gruntfile.js: add .tsx files to transpile watch task (#2963)

This commit is contained in:
Johannes Bittner 2019-04-08 19:18:41 +02:00 committed by Scott Nonnenberg
parent 97b26778b3
commit f540078aa9
1 changed files with 1 additions and 1 deletions

View File

@ -137,7 +137,7 @@ module.exports = grunt => {
tasks: ['sass'],
},
transpile: {
files: ['./ts/**/*.ts'],
files: ['./ts/**/*.ts', './ts/**/*.tsx'],
tasks: ['exec:transpile'],
},
},