我试图使用Typescript和SystemJS来处理Angular2,但我遇到了导入问题。
使用此导入(或任何其他angular2导入)
import {bootstrap} from 'angular2/platform/browser';
即使在 jspm_packages/npm/angular2@2.0.0-beta.0 < /强>
我的目录结构是
browser
components
app.component.ts
bootstrap.ts
index.html
node_modules
jspm_packages
jspm.config.js
package.json
tsconfig.json
tsconfig.json
{
"compilerOptions": {
"target": "ES5",
"module": "system",
"sourceMap": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"removeComments": false,
"noImplicitAny": false
},
"filesGlob": [
"!./node_modules/**/*.ts",
"!./jspm_packages/**/*.ts",
"./**/*.ts"
]
}
并在jspm.config.js中配置
System.config({
defaultJSExtensions: true,
transpiler: "typescript",
paths: {
"github:*": "../jspm_packages/github/*",
"npm:*": "../jspm_packages/npm/*"
}})
这段代码以某种方式工作,但编译器似乎很困惑,有更好(或正确)的方法如何做到这一点?感谢
答案 0 :(得分:2)
这在Webstorm 11中目前是不可能的。有一种实际可行的解决方法,请参阅David Festen在https://youtrack.jetbrains.com/issue/WEB-18904的评论。
顺便说一下,请为这个问题+1,也许这有助于加快Jetbrains提出修复的速度。