transpileModule诊断列表始终为空

时间:2019-03-06 04:09:42

标签: typescript

我试图为自己的规则创建一些测试:

import { expect } from 'chai';
import * as ts from 'typescript'
describe('suppress', function () {
  it('premitives test', function () {
    const source = `
    class model{
      a a a  
    `;
    let result = ts.transpileModule(source, {
      compilerOptions: { module: ts.ModuleKind.CommonJS }
    });
    let diagnostics = result.diagnostics;
  });
});

但是诊断列表始终为空,因此我是否需要使用另一个打字稿功能来实现?

0 个答案:

没有答案