UNPKG

backsplash-app

Version:
18 lines (17 loc) 409 B
/** @type {import('ts-jest').JestConfigWithTsJest} */ module.exports = { preset: "ts-jest", testEnvironment: "node", roots: ["<rootDir>/src"], testMatch: ["**/__tests__/**/*.ts", "**/?(*.)+(spec|test).ts"], transform: { "^.+\\.ts$": [ "ts-jest", { tsconfig: "tsconfig.json", }, ], }, moduleFileExtensions: ["ts", "js", "json", "node"], testTimeout: 10000, };