mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-01-02 12:03:49 -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;
|