10 lines
199 B
TypeScript
10 lines
199 B
TypeScript
import type { Config } from 'jest';
|
|
|
|
const config: Config = {
|
|
preset: 'ts-jest',
|
|
testEnvironment: 'node',
|
|
testPathIgnorePatterns: ['/node_modules/', '/dist/'],
|
|
};
|
|
|
|
export default config;
|