我正在用 TypeScript 编写脚本,当我使用 browserify 进行转换时,在浏览器中找不到我的主变量。
main.ts
import { GameSmart } from './GameSmart';
const gamesmart = new GameSmart();
gulpfile.js
/* require's snipped */
gulp.task('build', function () {
return browserify()
.add('./src/gamesmart/main.ts')
.plugin(tsify)
.bundle()
.on('error', function (error) {
console.error(error);
throw error;
})
.pipe(source('gamesmart.js'))
.pipe(gulp.dest('build/'));
});
在我的页面中,我包含了新创建的文件,并尝试调用该gamesmart
变量,但找不到它。
<script scr="/path/to/sdk.js">
<script>
gamesmart.game.started();
</script>
我怎样才能使它成为一个全局/根变量?