我尝试使用meteortypescript:compiler
和practicalmeteor: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时会看到错误,我该怎么做才能修复它?