为文件创建单独的构建文件,并在ng构建文件的main.ts中引用该代码

时间:2019-06-13 08:55:45

标签: javascript angular

对于Angular 6应用程序,在使用命令“ ng build”构建应用程序时,将为整个应用程序代码生成main.ts文件。 但是对于我的用例,我需要为特定文件创建一个单独的文件。该文件的代码需要在main.ts文件中使用。

我已经在angular.json的“ build”部分进行了更改。这样就创建了单独的文件,但是该代码未在main.ts文件的代码中引用和使用。

angular.json文件中的构建规则如下。

          "builder": "@angular-devkit/build-angular:browser",
          "options": {
            "outputPath": "dist/app",
            "index": "src/index.html",
            "main": "src/main.ts",
            "polyfills": "src/polyfills.ts",
            "tsConfig": "src/tsconfig.app.json",
            "assets": ["src/app/assets/images"],
            "styles": [
              "./node_modules/normalize.css/normalize.css",
              "src/styles.scss",
              "./node_modules/bootstrap/dist/css/bootstrap.min.css"
            ],
            "scripts": [
              "./node_modules/jquery/dist/jquery.min.js",
              "./node_modules/bootstrap/dist/js/bootstrap.min.js"
            ]
          }

请事先提供建议和感谢。

0 个答案:

没有答案