From 1eb6e842f97335cf6e4290aba92c3c8944efd2f3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Ml=C3=A1dek?= Date: Fri, 12 Nov 2021 16:51:47 +0100 Subject: [PATCH] [ui] set lib to es2019, shut up error/warning about flat() --- ui/tsconfig.json | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/ui/tsconfig.json b/ui/tsconfig.json index c4171b0..9c762d0 100644 --- a/ui/tsconfig.json +++ b/ui/tsconfig.json @@ -1,5 +1,7 @@ { "extends": "@tsconfig/svelte/tsconfig.json", - "include": ["src/**/*", "node_modules/upend/*"], -} \ No newline at end of file + "compilerOptions": { + "lib": ["es2019"] + } +}