mirror of
https://github.com/pacnpal/Roo-Code.git
synced 2025-12-20 04:11:10 -05:00
22 lines
558 B
JavaScript
22 lines
558 B
JavaScript
/** @type {import('ts-jest').JestConfigWithTsJest} */
|
|
module.exports = {
|
|
preset: 'ts-jest',
|
|
testEnvironment: 'node',
|
|
moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx', 'json', 'node'],
|
|
transform: {
|
|
'^.+\\.tsx?$': ['ts-jest', {
|
|
tsconfig: 'tsconfig.json'
|
|
}]
|
|
},
|
|
testMatch: ['**/__tests__/**/*.test.ts'],
|
|
moduleNameMapper: {
|
|
'^vscode$': '<rootDir>/node_modules/@types/vscode/index.d.ts'
|
|
},
|
|
setupFiles: [],
|
|
globals: {
|
|
'ts-jest': {
|
|
diagnostics: false
|
|
}
|
|
}
|
|
};
|