esm-logging/jest.config.js
Rodney, Tiara d27f6c65c1
init: working state
compiler + test suite are fine. logging module started, I'd say about 50%
complete.
2025-04-25 16:12:52 +02:00

8 lines
196 B
JavaScript

/** @type {import('ts-jest').JestConfigurationWithTsJest} **/
module.exports = {
testEnvironment: "node",
transform: {
"^.+.tsx?$": ["ts-jest", {}]
},
roots: ['./tests']
}