7 lines
197 B
JavaScript
7 lines
197 B
JavaScript
|
/** @type {import('ts-jest').JestConfigWithTsJest} */
|
||
|
module.exports = {
|
||
|
preset: 'ts-jest',
|
||
|
testEnvironment: 'node',
|
||
|
testPathIgnorePatterns: [ '<rootDir>/dist/', '<rootDir>/node_modules/' ],
|
||
|
};
|