From 787c3d5db944b77e01cf4c50634d99dff4a42586 Mon Sep 17 00:00:00 2001 From: SrIzan10 <66965250+SrIzan10@users.noreply.github.com> Date: Fri, 10 Nov 2023 23:33:10 +0100 Subject: [PATCH] chore: fix moduleResolution --- .github/workflows/jest.yml | 3 --- tsconfig.json | 3 ++- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/jest.yml b/.github/workflows/jest.yml index b26c4df..2316f07 100644 --- a/.github/workflows/jest.yml +++ b/.github/workflows/jest.yml @@ -12,8 +12,5 @@ jobs: - name: Install dependencies run: yarn - - name: Build Typescript files - run: yarn build - - name: Run Jest run: yarn test diff --git a/tsconfig.json b/tsconfig.json index dea46d8..acda740 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -4,7 +4,8 @@ "module": "commonjs", "target": "es6", "declaration": true, - "strict": true + "strict": true, + "moduleResolution": "node" }, "include": ["src"], "exclude": ["node_modules", "**/__tests__/*"]