我安裝從https://www.npmjs.com/package/js-beautify角度無法導入庫
通過npm install js-beautify --save
再加入進口JS-美化我app.component.ts
單證說要
import jsbeautifier
但它需要引號,所以我使用
import 'jsbeautifier'
但在那之後,當我試圖使用它我收到錯誤:
Failed to compile.
./src/app/app.component.ts
Module not found: Error: Can't resolve 'jsbeautifier' in '/home/oscar/IdeaProjects/lodashteatcherv4/src/frontend/src/app'
@ ./src/app/app.component.ts 14:0-22
@ ./src/app/app.module.ts
@ ./src/main.ts
@ multi webpack-dev-server/client?http://localhost:4200 ./src/main.ts
我也試過這種進口
import '../../node_modules/js-beautify/js/lib/beautify.js'
我採用了棱角分明的CLI 2/4
[使用Angular-CLI安裝第三方應用程序](https://stackoverflow.com/questions/42031389/installing-3rd-party-applications-with-angular-cli) – jonrsharpe