프로그램/html
angular 7 with jquery,bootstrap
milktea.kang
2019. 7. 4. 16:25
라이브러리 설치
npm install --save jquery bootstrap
npm install --save-dev @types/jquery @types/bootstrap
angular.json 에 jquery,bootstrap 추가
"architect":{
"build":{
"options":{
...
"scripts":[ ...jquery.min.js,bootstrap.bundle.min.js ]
tsconfig.app.json 에 jquery,bootstrap 추가
"compileOptions":{
"types":["jquery","bootstrap"]