mirror of
https://github.com/stripe/ai.git
synced 2026-09-14 18:39:59 +08:00
12 lines
269 B
TypeScript
12 lines
269 B
TypeScript
import type {Config} from 'jest';
|
|
|
|
const config: Config = {
|
|
preset: 'ts-jest',
|
|
testEnvironment: 'node',
|
|
roots: ['<rootDir>/src'],
|
|
testMatch: ['**/test/**/*.ts?(x)'],
|
|
moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx', 'json', 'node'],
|
|
};
|
|
|
|
export default config;
|