From 705a676fe353fbbb1394ddbd977d19ee84e01fda Mon Sep 17 00:00:00 2001 From: hensm Date: Sat, 15 Feb 2020 07:13:03 +0000 Subject: [PATCH] Fix typings build errors --- app/tsconfig.json | 3 +++ ext/tsconfig.json | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/app/tsconfig.json b/app/tsconfig.json index f377a96..72896a1 100644 --- a/app/tsconfig.json +++ b/app/tsconfig.json @@ -4,4 +4,7 @@ "./src/**/*" , "./@types/**/*" ] + , "compilerOptions": { + "lib": [ "ES2020.String", "DOM" ] + } } diff --git a/ext/tsconfig.json b/ext/tsconfig.json index d561538..066d39d 100644 --- a/ext/tsconfig.json +++ b/ext/tsconfig.json @@ -2,7 +2,7 @@ "extends": "../tsconfig" , "compilerOptions": { "jsx": "react" - , "lib": [ "esnext", "dom", "dom.iterable" ] + , "lib": [ "ESNext", "DOM", "DOM.Iterable" ] , "moduleResolution": "node" , "sourceMap": true }