mirror of
https://github.com/projectstorm/react-diagrams.git
synced 2025-08-18 19:20:42 +08:00
13 lines
287 B
JavaScript
13 lines
287 B
JavaScript
// jest.config.js
|
|
module.exports = {
|
|
verbose: true,
|
|
moduleFileExtensions: ["ts", "tsx", "js", "json"],
|
|
transform: {
|
|
"^.+\\.(ts|tsx)$": "./tests/helpers/tsx-preprocessor.js",
|
|
"^.+\\.(scss)$": "./tests/helpers/scss-preprocessor.js"
|
|
},
|
|
"testMatch": [
|
|
"**/tests/*\.test\.*"
|
|
]
|
|
};
|