我正在尝试对我的angular 4项目进行--aot编译。
我的tsconfig.json文件是
{
"compileOnSave": false,
"compilerOptions": {
"outDir": "./dist/out-tsc",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": false,
"target": "es5",
"typeRoots": [
"node_modules/@types"
],
"lib": [
"es2017",
"dom"
]
}
}
我正在使用的命令是ng build --aot
我正在使用名为bp-datepicker
的插件,尽管在aot
编译中工作正常,但在JIT
编译时会出错。
no such file or directory, open 'pathroproject\project\node_modules\bp-datepicker\bp-datepicker.component.html'
angular-cli版本: “ @ angular / cli”:“ 1.3.1”,
角核版本: “ @ angular / core”:“ ^ 4.2.4”,
答案 0 :(得分:0)
尝试使用--base-href
完整命令:
ng build --base-href /Name_of_Project/ --prod --aot