我使用npm
安装了它。我已将其添加到aurelia.json
中的依赖项:
"dependencies": [
// ...
{
"name": "typed",
"path": "../node_modules/typed.js/src"
}
]
我已将其导入我的文件中:
import Typed from 'typed';
然而,当我尝试将其称为var typed = new Typed(...);
时,我得到Typed is not defined
例外。 According to their docs事情应该很简单,所以我不确定我做错了什么。
答案 0 :(得分:1)
您的aurelia.json
声明中有一些错误。 typed.js 的dist
位于lib
而非src
,您可以定义主文件。请尝试以下方法:
"dependencies": [
// ...
{
"name": "typed",
"path": "../node_modules/typed.js/lib",
"main": "typed"
}