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__/*"]