AOt编译没有这样的文件或目录

时间:2019-03-27 20:41:52

标签: angular node-modules angular2-aot

我正在尝试对我的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”,

1 个答案:

答案 0 :(得分:0)

尝试使用--base-href

完整命令:

ng build --base-href /Name_of_Project/ --prod --aot