takitsuba_obsidian-auto-bullet/jest.config.js
2025-03-17 22:01:18 +09:00

11 lines
240 B
JavaScript

// 標準のJest設定を使用
module.exports = {
preset: 'ts-jest',
testEnvironment: 'node',
testMatch: ['**/__tests__/**/*.test.ts'],
transform: {
'^.+\\.tsx?$': ['ts-jest', {
tsconfig: 'tsconfig.json',
}],
},
};