Files
langchainjs/jest.config.js
T
Sean Sullivan 98f0df29d7 initial commit
2023-02-07 17:00:39 -08:00

12 lines
264 B
JavaScript

/** @type {import('ts-jest').JestConfigWithTsJest} */
module.exports = {
preset: 'ts-jest/presets/js-with-ts',
testEnvironment: 'node',
transform: {
"^.+\\.(ts|tsx)$": "ts-jest",
"^.+\\.(js)$": "babel-jest",
},
transformIgnorePatterns: [
],
};