13 lines
273 B
TypeScript
13 lines
273 B
TypeScript
|
import type { Config } from 'jest';
|
||
|
|
||
|
const config: Config = {
|
||
|
preset: 'ts-jest',
|
||
|
testEnvironment: 'node',
|
||
|
coverageDirectory: './coverage',
|
||
|
collectCoverage: true,
|
||
|
testPathIgnorePatterns: [ '/^node_modules$/', '/^archive$/' ],
|
||
|
};
|
||
|
|
||
|
export default config;
|
||
|
|