fed-policy-cli
Version:
Macro trading intelligence from Fed policy analysis. Transform economic data into actionable trading insights by analyzing historical Fed policy analogues.
17 lines • 357 B
JavaScript
// jest.config.cjs
module.exports = {
preset: "ts-jest",
testEnvironment: "node",
testPathIgnorePatterns: ["/node_modules/", "/dist/"],
transform: {
"^.+\\.tsx?$": [
"ts-jest",
{
// Override the tsconfig.json to transpile to CommonJS for testing
tsconfig: {
module: "commonjs"
}
}
]
}
};