storybook/scripts/jest-ts-babel.js
2018-08-05 17:57:17 +02:00

11 lines
478 B
JavaScript

const tsTransformer = require('jest-preset-angular/preprocessor');
const babelTransformer = require('babel-jest');
module.exports.process = function transform(src, path, config, transformOptions) {
const tsResult = tsTransformer.process(src, path, config, transformOptions);
const jsPath = path.replace('.ts', '.js');
const source = typeof tsResult === 'string' ? tsResult : tsResult.code;
return babelTransformer.process(source, jsPath, config, transformOptions);
};