mirror of
https://github.com/balzack/databag.git
synced 2025-05-02 06:25:18 +00:00
11 lines
200 B
JavaScript
11 lines
200 B
JavaScript
module.exports = {
|
|
roots: ['<rootDir>/src'],
|
|
testMatch: [
|
|
"**/__tests__/**/*.+(ts|tsx|js)",
|
|
"**/?(*.)+(spec|test).+(ts|tsx|js)"
|
|
],
|
|
transform: {
|
|
"^.+\\.(ts|tsx)$": "ts-jest"
|
|
},
|
|
}
|