From 3debc1596750e286b2727cef5c73f295886c3069 Mon Sep 17 00:00:00 2001 From: Sergej Date: Fri, 10 May 2024 15:03:57 +0200 Subject: [PATCH] fix npm run build --- .github/workflows/lint-e2e_tests.yml | 1 + tsconfig.json | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/lint-e2e_tests.yml b/.github/workflows/lint-e2e_tests.yml index 46b92c0a..6c9562d0 100644 --- a/.github/workflows/lint-e2e_tests.yml +++ b/.github/workflows/lint-e2e_tests.yml @@ -27,3 +27,4 @@ jobs: - run: npm i - run: npm run format - run: npm run lint + - run: npm run build diff --git a/tsconfig.json b/tsconfig.json index 09baebed..eafcd671 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -4,7 +4,8 @@ "outDir": "e2e_tests/build", "target": "ES2020", "strict": true, - "esModuleInterop": true + "esModuleInterop": true, + "skipLibCheck": true }, "include": ["e2e_tests/**/*.ts"], "exclude": ["node_modules"]