From f540078aa9c709ed18b7f51fe18e5c10320bbe6b Mon Sep 17 00:00:00 2001 From: Johannes Bittner Date: Mon, 8 Apr 2019 19:18:41 +0200 Subject: [PATCH] Gruntfile.js: add .tsx files to transpile watch task (#2963) --- Gruntfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gruntfile.js b/Gruntfile.js index 686ff659a..ef51f3c0d 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -137,7 +137,7 @@ module.exports = grunt => { tasks: ['sass'], }, transpile: { - files: ['./ts/**/*.ts'], + files: ['./ts/**/*.ts', './ts/**/*.tsx'], tasks: ['exec:transpile'], }, },