Conflict/packages/stat-sheet-block/jest.config.js

11 lines
228 B
JavaScript
Raw Normal View History

2022-06-22 17:59:35 +00:00
/** @type {import('@jest/types').Config.InitialOptions} */
const config = {
testEnvironment: "jsdom",
extensionsToTreatAsEsm: [".ts", ".tsx"],
2022-06-22 14:15:37 +00:00
transform: {
2022-06-22 17:59:35 +00:00
"^.+\\.tsx?$": "@swc/jest",
2022-06-22 14:15:37 +00:00
},
};
2022-06-22 17:59:35 +00:00
module.exports = config;