mirror of
https://github.com/HackPlan/UUI.git
synced 2026-01-12 22:27:10 +08:00
14 lines
358 B
JavaScript
14 lines
358 B
JavaScript
module.exports = {
|
|
preset: 'ts-jest',
|
|
testEnvironment: 'jsdom',
|
|
testMatch: [
|
|
'**/tests/**/*.test.ts',
|
|
'**/tests/**/*.test.tsx',
|
|
],
|
|
transform: {
|
|
"^.+\\.js$": "babel-jest",
|
|
"^.+\\.(ts|tsx)$": "ts-jest",
|
|
"^.+\\.svg$": "jest-svg-transformer"
|
|
},
|
|
transformIgnorePatterns: ["<rootDir>/node_modules/(?!(lodash-es|other-es-lib))"]
|
|
}; |