添加第三方库

在 angular-cli.json 中,你可以更改应用程序配置。

如果你想添加 ng2-bootstrap 例如:

  1. npm install ng2-bootstrap --saveyarn add ng2-bootstrap

  2. 在 angular-cli.json 中,只需在 node-modules 上添加 bootstrap 的路径。

    "scripts": [
        "../node_modules/jquery/dist/jquery.js",
        "../node_modules/bootstrap/dist/js/bootstrap.js"
     ]