UNPKG

@pgsql/cli

Version:

Unified CLI for PostgreSQL AST parsing, deparsing, and code generation

19 lines (18 loc) 548 B
/** @type {import('ts-jest').JestConfigWithTsJest} */ module.exports = { preset: "ts-jest", testEnvironment: "node", transform: { "^.+\\.tsx?$": [ "ts-jest", { babelConfig: false, tsconfig: "tsconfig.json", }, ], }, transformIgnorePatterns: [`/node_modules/*`], testRegex: "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$", moduleFileExtensions: ["ts", "tsx", "js", "jsx", "json", "node"], modulePathIgnorePatterns: ["dist/*"] };