我需要在我的模块
中导入一些Angular CLI的依赖项import 'bootstrap/dist/css/bootstrap.css';
import 'jquery/dist/jquery.min.js';
当我在脚本中放入angular-cli.json时它工作了:[]但是当我把它放在我的app.module中时,依赖性根本不起作用。
希望有人可以描述我的应用程序会发生什么。
答案 0 :(得分:0)
它不起作用的原因是因为您没有为关联的库安装Typescript declaration file (aka *.d.ts
)。因此,请在控制台中输入以下命令:
npm install --save @types/jquery # Install jquery type declaration
npm install --save @types/bootstrap # Install bootstrap type declaration