在我的有角项目中,我整合了口香糖。 我想得到与gulp ng build相同的结果。我创建了必要的任务,可以在main.js文件中编译所有内容,但是如果我将其部署在Nginx服务器上,则会出现错误。 我的gulpfile.js(任务,编译)
gulp.task('compile', function () {
var tsResult = gulp.src('src/app/**/*.ts')
.pipe(tsProject());
return tsResult.js
.pipe(sourcemaps.init())
.pipe(concat('main.js'))
.pipe(sourcemaps.write("."))
.pipe(gulp.dest('dist'));
});
我的tsconfig
{
"compilerOptions": {
"target": "ES5",
"module": "es2015",
"sourceMap": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"moduleResolution": "node",
"removeComments": false
}
}