mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2025-12-30 03:03:06 -05:00
12 lines
211 B
TypeScript
12 lines
211 B
TypeScript
import type { Config } from 'jest';
|
|
|
|
const config: Config = {
|
|
verbose: true,
|
|
testRegex: '\\.test\\.ts$',
|
|
transform: {
|
|
'^.+\\.ts$': ['ts-jest', { isolatedModules: true }]
|
|
}
|
|
};
|
|
|
|
export default config;
|