在 karma 中使用 "tsify" 启用 "Experimental support for decorators"

Enable "Experimental support for decorators" with "tsify" in karma

我正在使用 tsify,一个用于 browserify 的插件,在 karma 单元测试期间转换我的代码。

我在 运行 我的测试中遇到这种错误:

TypeScript error: src/app/emailLogin/emailLogin.component.ts(14,14): Error TS1219: Experimental support for decorators is a feature that is subject to change in a future release. Set the 'experimentalDecorators' option to remove this warning.

如何在我的 karma.config.js

中指定的 browserify/tsify 中启用 experimentalDecorators

这是我的 karma.config.js:

module.exports = function(config) {
  config.set({
    browsers: ['Chrome'],
    frameworks: ['jasmine', 'browserify', 'es6-shim'],
    files: [
      'src/**/*.spec.ts'
    ],
    preprocessors: {
      '**/*.ts': ['browserify']
    },
    browserify: {
      debug: true,
      plugin: ['tsify'],
      transform: ['browserify-shim']
    }
  });
};

这是我的 gulp 文件(我认为这无关紧要)

var gulp = require('gulp');
var Server = require('karma').Server;

/**
 * Run test once and exit
 */
gulp.task('test', function (done) {
  new Server({
    configFile: __dirname + '/karma.conf.js',
    singleRun: true
  }, done).start();
});

/**
 * Watch for file changes and re-run tests on each change
 */
gulp.task('tdd', function (done) {
  new Server({
    configFile: __dirname + '/karma.conf.js'
  }, done).start();
});

gulp.task('default', ['tdd']);

有两个compiler options与装饰器有关:

--emitDecoratorMetadata
--experimentalDecorators

通常,它们会在您项目的 tsconfig.json 文件中启用(tsify 将搜索并加载 tsconfig.json):

{
    "compilerOptions": {
        "emitDecoratorMetadata": true,
        "experimentalDecorators": true,
        "target": "es5"
    },
    "files": []
}

如果出于某种原因,您没有使用 tsconfig.json 文件,可以在 Karma 的 browserify 插件配置中启用它们(注意数组中的数组):

browserify: {
    debug: true,
    plugin: [['tsify', {
        emitDecoratorMetadata: true,
        experimentalDecorators: true
    }]],
    transform: ['browserify-shim']
}

它们也可以通过命令行启用:

browserify -p [tsify --emitDecoratorMetadata --experimentalDecorators] main.ts > bundle.js