很难用离子2添加第三方库.js文件,我找不到"模块未找到"。虽然我已经通过键入" npm install progressbar.js"来安装它。我的home.ts有正确的import语句:" import *作为ProgressBar来自' progressbar.js&#39 ;;",而progressbar.js文件夹位于node_modules文件夹下。
我错过了什么吗?
顺便说一下。我正在使用Atom。
这是我的tsconfig.json
{
"compilerOptions": {
"target": "es5",
"module": "commonjs",
"emitDecoratorMetadata": true,
"experimentalDecorators": true
},
"filesGlob": [
"**/*.ts",
"!node_modules/**/*"
],
"exclude": [
"node_modules",
"typings/global",
"typings/global.d.ts"
],
"compileOnSave": false,
"atom": {
"rewriteTsconfig": false
}
}