storybook/examples/angular-cli/jest.config.js
Igor aed1a75a3e Merge pull request #4706 from storybooks/node-path-loading-fix
Fix NODE_PATH is not being loaded from .env
2018-11-13 18:47:56 +08:00

16 lines
446 B
JavaScript

const config = require('../../jest.config');
module.exports = {
...config,
globals: {
__TRANSFORM_HTML__: true,
},
roots: [__dirname],
transform: {
...config.transform,
'^.+[/\\\\].storybook[/\\\\]config\\.ts$': '<rootDir>/scripts/jest-ts-babel.js',
'^.+\\.(ts|html)$': '<rootDir>/node_modules/jest-preset-angular/preprocessor.js',
},
moduleFileExtensions: [...config.moduleFileExtensions, 'ts', 'tsx', 'html'],
};