如何生成Angular.json文件

时间:2019-03-07 07:35:21

标签: angular-cli

我当前的应用程序是在没有Angular CLI的Angular 4中。所以我从来没有Angualr.json文件或Angular-cli.json文件。现在我们要生成该Angular CLI或angular.json文件。由于此文件不可用,因此不会执行任何ng命令(例如ng serve或ng g c testing)

如何在不使用ng new命令的情况下生成文件,因为ng new将创建一个我不需要的新项目。我想支持我现有的项目。

关于我的项目的几点注意事项: 1.我们正在从一个文件夹启动多个应用程序 2.我们正在从ASPX页面启动每个应用程序,而无需使用index.html。

请查看附带的错误屏幕截图以及我的项目的文件夹结构enter image description here

enter image description here

2 个答案:

答案 0 :(得分:1)

创建一个名为“ .angular-cli.json”的新文件,并将其添加到您的主目录中。

{
  "$schema": "./node_modules/@angular/cli/lib/config/schema.json",
  "project": {
    "name": "my-app"
  },
  "apps": [
    {
      "root": "src",
      "outDir": "dist",
      "assets": [
        "assets",
        "favicon.ico"
      ],
      "index": "index.html",
      "main": "main.ts",
      "polyfills": "polyfills.ts",
      "test": "test.ts",
      "tsconfig": "tsconfig.app.json",
      "testTsconfig": "tsconfig.spec.json",
      "prefix": "app",
      "styles": [
        "styles.css"
      ],
      "scripts": [],
      "environmentSource": "environments/environment.ts",
      "environments": {
        "dev": "environments/environment.ts",
        "prod": "environments/environment.prod.ts"
      }
    }
  ],
  "e2e": {
    "protractor": {
      "config": "./protractor.conf.js"
    }
  },
  "lint": [
    {
      "project": "src/tsconfig.app.json",
      "exclude": "**/node_modules/**"
    },
    {
      "project": "src/tsconfig.spec.json",
      "exclude": "**/node_modules/**"
    },
    {
      "project": "e2e/tsconfig.e2e.json",
      "exclude": "**/node_modules/**"
    }
  ],
  "test": {
    "karma": {
      "config": "./karma.conf.js"
    }
  },
  "defaults": {
    "styleExt": "css",
    "component": {}
  }
}

答案 1 :(得分:0)

从angular> = 6开始,将'.angular-cli.json'文件替换为'angular.json'文件。由于您的项目基于您所说的angular 4,因此您需要创建“ .angular-cli.json”文件而不是“ angular.json”文件。

当您已经准备好角度为4的项目时,您想要生成文件命令(如上所述):

ng g c sample

所以我假设您已经在全球范围内安装了最新的cli。

您可以欺骗。只需在其他位置创建一个新项目,然后将“ .angular-cli.json”文件复制到所需的项目文件夹中即可。之后,只需更改项目名称和其他与您需要相关的内容即可。如您所知,自己创建一个'.angular-cli.json'文件也有点繁琐和耗时。如果您已经安装了cli,那么我认为不需要手动创建它也可能导致编译错误。这就是我的朋友。您还可以根据需要在下面使用此“ .angular-cli.json”:

{
  "$schema": "./node_modules/@angular/cli/lib/config/schema.json",
  "project": {
    "name": "angular-app"
  },
  "apps": [
    {
      "root": "src",
      "outDir": "dist",
      "assets": [
        "assets",
        "favicon.ico"
      ],
      "index": "index.html",
      "main": "main.ts",
      "polyfills": "polyfills.ts",
      "test": "test.ts",
      "tsconfig": "tsconfig.app.json",
      "testTsconfig": "tsconfig.spec.json",
      "prefix": "app",
      "styles": [
        "styles.css"
      ],
      "scripts": [],
      "environmentSource": "environments/environment.ts",
      "environments": {
        "dev": "environments/environment.ts",
        "prod": "environments/environment.prod.ts"
      }
    }
  ],
  "e2e": {
    "protractor": {
      "config": "./protractor.conf.js"
    }
  },
  "lint": [
    {
      "project": "src/tsconfig.app.json"
    },
    {
      "project": "src/tsconfig.spec.json"
    },
    {
      "project": "e2e/tsconfig.e2e.json"
    }
  ],
  "test": {
    "karma": {
      "config": "./karma.conf.js"
    }
  },
  "defaults": {
    "styleExt": "css",
    "component": {}
  }
}