mirror of
https://github.com/sasjs/adapter.git
synced 2025-12-10 17:04:36 +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"
|
|
}
|
|
};
|