@gentrace/pinecone
Version:
Gentrace Pinecone v1 plugin for Node.JS
17 lines (16 loc) • 408 B
JavaScript
module.exports = {
setupFiles: ["dotenv/config"],
preset: "ts-jest/presets/js-with-ts",
testEnvironment: "node",
testPathIgnorePatterns: ["node_modules", "dist"],
transform: {
"^.+\\.tsx?$": [
"ts-jest",
{
tsconfig: "tsconfig.spec.json",
},
],
"^.+\\.js$": "babel-jest",
},
testMatch: ["**/tests/**/*.test.[jt]s?(x)", "**/?(*.)+(spec|test).[jt]s?(x)"],
};