使用打字稿

时间:2016-07-07 07:15:14

标签: javascript meteor typescript

我尝试使用meteortypescript:compilerpracticalmeteor:mocha在Meteor中使用Typescript创建一个简单的测试。当我的文件名为Foo_test.js时,下面的代码工作正常。当我将其命名为Foo_test.ts时,我会收到错误:

import {Meteor} from 'meteor/meteor';
import {Random} from 'meteor/random';

// With typescript, the line below gives:
// Cannot find module 'meteor/practicalmeteor:chai'
// Without typescript, there are no errors
import { assert } from 'meteor/practicalmeteor:chai';

为什么我在使用Typescript时会看到错误,我该怎么做才能修复它?

0 个答案:

没有答案