mirror of
https://github.com/swc-project/swc.git
synced 2024-11-23 17:54:15 +03:00
12 lines
392 B
JavaScript
12 lines
392 B
JavaScript
|
module.exports = {
|
||
|
testMatch: ["**/__tests__/**/*.[jt]s?(x)", "**/__tests__/**/*.m[jt]s?(x)", "**/?(*.)+(spec|test).[jt]s?(x)"],
|
||
|
transform: {
|
||
|
},
|
||
|
// transform: {
|
||
|
// "^.+\\.jsx?$": "babel-jest",
|
||
|
// "^.+\\.mjs$": "babel-jest",
|
||
|
// },
|
||
|
testPathIgnorePatterns: ["<rootDir>/build/", "<rootDir>/node_modules/"],
|
||
|
moduleFileExtensions: ["js", "jsx", "mjs"]
|
||
|
}
|