From 996a2f8928a0fb551a011f0fd9dc4413d83cae2d Mon Sep 17 00:00:00 2001 From: Sam Vervaeck Date: Sat, 1 Jul 2023 01:25:18 +0200 Subject: [PATCH] Disable browser APIs in TypeScript project --- compiler/tsconfig.json | 1 + 1 file changed, 1 insertion(+) diff --git a/compiler/tsconfig.json b/compiler/tsconfig.json index 120e849c9..ed87293a4 100644 --- a/compiler/tsconfig.json +++ b/compiler/tsconfig.json @@ -1,6 +1,7 @@ { "compilerOptions": { "target": "ES2016", + "lib": [ "ES2016" ], "module": "commonjs", "moduleResolution": "node", "declaration": true,