From 097900de7540c6df61942fd6326430726d4650c1 Mon Sep 17 00:00:00 2001 From: arnold Date: Tue, 7 Nov 2023 02:12:22 +0100 Subject: [PATCH] Why is `yarn build` failing on travis? --- .gitignore | 1 + tsconfig.json | 1 + 2 files changed, 2 insertions(+) diff --git a/.gitignore b/.gitignore index f99f19d..9df864b 100644 --- a/.gitignore +++ b/.gitignore @@ -12,3 +12,4 @@ test*.ts yarn.lock package-lock.json .nyc_output +.yarn diff --git a/tsconfig.json b/tsconfig.json index 2f3d3eb..78c5da7 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -11,6 +11,7 @@ "target": "es2020", "rootDir": "src", "esModuleInterop": true, + "module": "node16", "moduleResolution": "node16" }, "include": ["src"],