From cfbc7b3f6714ced250dd4053822faf472bf1828e Mon Sep 17 00:00:00 2001 From: Colin McDonnell Date: Fri, 23 Jun 2023 18:55:32 -0700 Subject: [PATCH] Fix root jest config --- jest.config.json | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 jest.config.json diff --git a/jest.config.json b/jest.config.json new file mode 100644 index 000000000..8051d1085 --- /dev/null +++ b/jest.config.json @@ -0,0 +1,10 @@ +{ + "rootDir": ".", + "transform": { + "^.+\\.tsx?$": "ts-jest" + }, + "testRegex": "src/.*\\.test\\.ts$", + "modulePathIgnorePatterns": ["language-server", "__vitest__"], + "moduleFileExtensions": ["ts", "tsx", "js", "jsx", "json", "node"], + "coverageReporters": ["json-summary", "text", "lcov"] +}