Files
orionprotocol-sdk/jest.config.ts
Aleksandr Kraiz 68c535103e Refactoring
2023-02-08 00:35:11 +04:00

13 lines
314 B
TypeScript

import type { JestConfigWithTsJest } from 'ts-jest';
const config: JestConfigWithTsJest = {
preset: 'ts-jest',
testEnvironment: 'node',
testMatch: ['**/__tests__/**/*.test.ts'],
modulePathIgnorePatterns: ['lib', 'node_modules'],
transform: {
'^.+\\.ts$': 'ts-jest',
},
};
export default config;