typescript:导入jspm库

时间:2016-03-03 17:15:16

标签: angularjs typescript systemjs jspm

因此,我在将jspm包导入typescript时发现的大多数示例都假设我想使用Systemjs在浏览器中加载和解释它们。但是,我宁愿使用tsc来构建commonjs模块,只导入js代码,因为在我看来,这对我来说是更通用和反差的方法。

所以我的目录结构如下:

src/index.ts
jspm_packages/...
config.js
tsconfig.json

tsconfig具有以下内容:

{
  "compilerOptions": {
    "target": "es5",
    "module": "commonjs",
    "noEmitOnError": true,
    "noImplicitAny": false,
    "rootDir": "src",
    "outDir": "target/app",
    "sourceMap": true,
    "experimentalDecorators": true,
    "emitDecoratorMetadata": true,
    "declaration": true
  },
  "exclude": [
    "jspm_packages",
    "node_modules",
    "typings",
    "target"
  ]
}

出于测试目的,我使用jspm install npm:angular2安装了角度2并尝试通过index.ts

在我的import { bootstrap } from 'angular2/platform/browser';中导入

运行tsc时,出现错误

src/index.ts(1,27): error TS2307: Cannot find module 'angular2/platform/browser'.

现在我想知道,我可以使用打字稿知道jspm包吗?我觉得我尝试了一切,从tsconfig排除列表中删除了jspm_packages,切换到节点模块解析或systemjs模块生成。也许我还没找到合适的组合。关于下一步尝试的任何提示?

1 个答案:

答案 0 :(得分:2)

我也在努力解决同样的问题,经过一些研究后,我了解到目前还没有很好的解决方案。

解决方法:

A)您可以复制依赖项并使用npm进行安装。自从npm解析以来,tsc不应该抛出任何错误。

B)更改你的tsconfig.json并将angular映射到jspm路径。例如

"baseUrl": ".",
"paths": {
     "angular2/*": [
        "jspm_packages/npm/angular2@2.0.0-beta.7/*"
     ],
     "rxjs/*": [
        "jspm_packages/npm/rxjs@5.0.0-beta.2/*"
     ]
  }

有关完整示例,请参阅https://github.com/frankwallis/plugin-typescript/tree/master/examples/angular2

请注意" baseUrl"和"路径"不是官方属性,仅限于打字稿编译器的beta版本。

目前正在跟踪此问题: https://github.com/Microsoft/TypeScript/issues/6012