8 lines
141 B
JavaScript
8 lines
141 B
JavaScript
|
module.exports = {
|
||
|
transform: {
|
||
|
".(js|ts)$": ["@swc/jest"],
|
||
|
},
|
||
|
testMatch: ["**/*.test.(js|ts)"],
|
||
|
transformIgnorePatterns: [],
|
||
|
};
|