Consider the following two files:
app.js
import Game from \'./game/game\';
import React from \'react\';
import ReactDOM fro
This error can be caused by not including tsify plugin to compile typescript in the gulp task.
example
var tsify = require('tsify');
return browserify({ ... })
.plugin(tsify)
.transform(babelify.configure({
presets: ["es2015"]
}))
...
See installation and usage here: https://www.npmjs.com/package/tsify