aboutsummaryrefslogtreecommitdiff
path: root/gulpfile.js
diff options
context:
space:
mode:
Diffstat (limited to 'gulpfile.js')
-rw-r--r--gulpfile.js4
1 files changed, 3 insertions, 1 deletions
diff --git a/gulpfile.js b/gulpfile.js
index ec8321dc0..568300614 100644
--- a/gulpfile.js
+++ b/gulpfile.js
@@ -53,7 +53,7 @@ const po2json = require("po2json");
const paths = {
ts: {
src: [
- "src/**/*.{ts,tsx}",
+ "src/**/*.{ts,tsx,js}",
"!src/**/*-test*.ts",
],
decl: [
@@ -112,6 +112,8 @@ const tsBaseArgs = {
strict: true,
outDir: "build/src/",
noImplicitAny: true,
+ allowJs: true,
+ checkJs: true,
};