mirror of
https://github.com/projectstorm/react-diagrams.git
synced 2025-08-17 02:26:54 +08:00
12 lines
286 B
JavaScript
12 lines
286 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\.*"
|
|
]
|
|
}; |