mirror of
https://github.com/barthuijgen/factorio-sites.git
synced 2024-12-11 11:41:28 +02:00
14 lines
400 B
JavaScript
14 lines
400 B
JavaScript
module.exports = {
|
|
displayName: 'blueprints',
|
|
preset: '../../jest.preset.js',
|
|
transform: {
|
|
'^(?!.*\\.(js|jsx|ts|tsx|css|json)$)': '@nrwl/react/plugins/jest',
|
|
'^.+\\.[tj]sx?$': [
|
|
'babel-jest',
|
|
{ cwd: __dirname, configFile: './babel-jest.config.json' },
|
|
],
|
|
},
|
|
moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx'],
|
|
coverageDirectory: '../../coverage/apps/blueprints',
|
|
};
|