-1

创建 AOT angular 2 示例时的编译问题

运行命令“npm run rollup -c rollup-config.js”

“无法解析条目(app/main-aot.ts)”

4

1 回答 1

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()
]

}

我的文件在上面

于 2017-01-11T15:23:12.863 回答