我正在使用gulp
,browserify
并tsify
捆绑我的应用程序,并将 browserify 指向该main.ts
文件。这就是我捆绑应用程序所做的一切。但是,当我尝试运行index.html
导入了捆绑的 js 文件的文件时,出现错误:this._nativeError is undefined
出现空白屏幕。
我的tsconfig.json
:
{
"compileOnSave": false,
"compilerOptions": {
"declaration": false,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"module": "commonjs",
"moduleResolution": "node",
"outDir": "../dist/out-tsc-e2e",
"sourceMap": true,
"target": "es5",
"typeRoots": [
"../node_modules/@types"
]
}
}
我的吞咽任务: