From aad99d96a3597463a66492a928e385a8fa01ee21 Mon Sep 17 00:00:00 2001 From: Oscar Dominguez Date: Fri, 4 Oct 2024 00:07:54 +0200 Subject: [PATCH] build: remove jest configuration --- package.json | 30 ------------------------------ test/tsconfig.test.json | 9 --------- 2 files changed, 39 deletions(-) delete mode 100644 test/tsconfig.test.json diff --git a/package.json b/package.json index cdba9f0e..b1888714 100644 --- a/package.json +++ b/package.json @@ -47,36 +47,6 @@ "typescript": "^5.0.0", "vitest": "^2.1.2" }, - "jest": { - "extensionsToTreatAsEsm": [ - ".ts" - ], - "transform": { - "^.+\\.(ts|tsx)$": [ - "ts-jest", - { - "tsconfig": "test/tsconfig.test.json", - "useESM": true - } - ] - }, - "coverageThreshold": { - "global": { - "statements": 100, - "branches": 100, - "functions": 100, - "lines": 100 - } - }, - "testPathIgnorePatterns": [ - "/node_modules/", - "/test/deno/" - ], - "testEnvironment": "node", - "moduleNameMapper": { - "^(.+)\\.jsx?$": "$1" - } - }, "release": { "branches": [ "+([0-9]).x", diff --git a/test/tsconfig.test.json b/test/tsconfig.test.json deleted file mode 100644 index cf1f2005..00000000 --- a/test/tsconfig.test.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "extends": "../tsconfig.json", - "compilerOptions": { - "emitDeclarationOnly": false, - "noEmit": true, - "allowImportingTsExtensions": true - }, - "include": ["src/**/*"] -}