本文介绍了如何使用 Angular-Cli 在不在/src/app 中的文件夹中创建组件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我希望能够在/src/app/外部的文件夹中创建组件、模块或服务...
I want to be able to create components or modules or services in folder external to /src/app/...
所以我尝试过 ng g c ../mco/lib 但它失败了.
so i've tried with ng g c ../mco/lib but it fail.
我希望能够使用 CLI 在应用程序外部的文件夹中创建一个组件.
I want to be able to create with the CLI a component in folder external to app.
我怎样才能做到这一点?
how can i achieve this ?
您可以更改 AngularCli 的 appRoot,因此在 angular-cli.json 中,我在 "apps" 数组中添加了一个属性 "appRoot": "mco"
You can change the appRoot of AngularCli, so in angular-cli.json i've added in "apps" array, a property "appRoot": "mco"
推荐答案
更改 AngularCli 的 appRoot.
Change the appRoot of AngularCli.
所以在 angular-cli.json 中
So in angular-cli.json
"apps": [
{
"root": "src",
"outDir": "dist",
"test": "test.ts",
"tsconfig": "tsconfig.app.json",
"testTsconfig": "tsconfig.spec.json",
"prefix": "tr",
"appRoot": "mco"
}
],
这篇关于如何使用 Angular-Cli 在不在/src/app 中的文件夹中创建组件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!