0
我只是想用它,我不關心自動完成和所有的糖..如何包括在我的角2項目中使用非TS節點模塊
在的package.json
"module-x": "https://github.com/somerepo/module-x"
我然後嘗試在我app.component.ts
import "module-x";
使用它,它不能在項目中找到。
我只是想用它,我不關心自動完成和所有的糖..如何包括在我的角2項目中使用非TS節點模塊
在的package.json
"module-x": "https://github.com/somerepo/module-x"
我然後嘗試在我app.component.ts
import "module-x";
使用它,它不能在項目中找到。
Angular 2需要JS和TS模塊。然而,它會對角度1模塊產生問題。
我的猜測是你的模塊問題是你永遠不會運行「npm install -s」,所以雖然包json仍然有它,但實際的模塊文件從未安裝/下載。
做"npm install -s"
項目文件夾
,然後...
import {* or feature name} from "module_x";