使用 angular-cli 進行配置

NPM

如果使用 NPM 安裝了像 jQuery 這樣的外部庫

npm install --save jquery

將指令碼路徑新增到 angular-cli.json

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

資產資料夾

你也可以將庫檔案儲存在 assets/js 目錄中,並在 angular-cli.json 中包含相同的檔案

"scripts": [
    "assets/js/jquery.js"
]

注意

將主庫 jquery 及其依賴項(如 jquery-cycle-plugin)儲存到 assets 目錄中,並將它們新增到 angular-cli.json 中,確保為依賴項維護順序。