mirror of
https://github.com/swc-project/swc.git
synced 2024-11-23 17:54:15 +03:00
211e208219
node/binding: - Fix visitor methods for array elements. (#1819, #1888) - Fix for const assertion. (#1625) - Verify object properties. (#906)
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"]
|
|
}
|