From 67bef7149b333de45497b39e8ee43a3f63a81fbe Mon Sep 17 00:00:00 2001 From: Martin Hochel Date: Mon, 8 Aug 2022 11:44:21 +0200 Subject: [PATCH] chore(pr-deploy-site): fix ts-config --- apps/pr-deploy-site/tsconfig.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/apps/pr-deploy-site/tsconfig.json b/apps/pr-deploy-site/tsconfig.json index 05b3c792324e38..164cfd41d215f7 100644 --- a/apps/pr-deploy-site/tsconfig.json +++ b/apps/pr-deploy-site/tsconfig.json @@ -2,7 +2,8 @@ "extends": "../../scripts/tsconfig.json", "compilerOptions": { "noEmit": true, - "allowJs": true + "allowJs": true, + "lib": ["ES2020", "DOM"] }, "include": ["pr-deploy-site.js", "just.config.ts"] }