From 6c77360f6b8dd9ee7ea07b67f9a6a9c540100ed9 Mon Sep 17 00:00:00 2001 From: Henning Dieterichs Date: Tue, 4 Apr 2023 11:00:31 +0200 Subject: [PATCH] Sets tsc target to fix playground compile issues --- website/scripts/check-playground-samples-js.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/website/scripts/check-playground-samples-js.ts b/website/scripts/check-playground-samples-js.ts index dffcc62e..b0fa28c4 100644 --- a/website/scripts/check-playground-samples-js.ts +++ b/website/scripts/check-playground-samples-js.ts @@ -14,6 +14,8 @@ import { exit } from "process"; "yarn", [ "tsc", + "--target", + "es6", "--noEmit", "--allowJs", "--checkJs",