15 lines
283 B
JavaScript
15 lines
283 B
JavaScript
module.exports = {
|
|
rootDir: './src',
|
|
transform: {
|
|
'^.+\\.(ts|tsx)$': 'ts-jest',
|
|
},
|
|
testEnvironment: 'jsdom',
|
|
setupFiles: [
|
|
'./js/test/jest/setup.ts',
|
|
],
|
|
transformIgnorePatterns: [
|
|
'<rootDir>/node_modules/@babel',
|
|
'<rootDir>/node_modules/@jest',
|
|
],
|
|
};
|