创建AOT角度2样本时的编译问题
运行命令" npm运行汇总-c rollup-config.js"
"无法解决条目(app / main-aot.ts)"
答案 0 :(得分:0)
import rollup from 'rollup'
import nodeResolve from 'rollup-plugin-node-resolve'
import commonjs from 'rollup-plugin-commonjs';
import uglify from 'rollup-plugin-uglify'
//paths are relative to the execution path
export default {
entry: './app/main-aot.js',
dest: 'aot/dist/build.js', // output a single application bundle
sourceMap: true,
sourceMapFile: 'aot/dist/build.js.map',
format: 'iife',
plugins: [
nodeResolve({
jsnext: true,
module: true
}),
commonjs({
include: ['node_modules/rxjs/**']
}),
uglify()
]
}
我的档案在
之上