我正在从https://www.npmjs.com/package/js-beautify安装 js-beautify
通过npm install js-beautify --save
然后将导入添加到我的 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