From 50d937a464d62aed807037f61c1a5c9d59964f88 Mon Sep 17 00:00:00 2001 From: rumblefrog Date: Sun, 17 Nov 2019 20:32:19 -0500 Subject: [PATCH] tsconfig: remove dom from lib --- tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index 7649fcf..8684fac 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,6 +1,6 @@ { "compilerOptions": { - "lib": [ "es2015", "dom" ], + "lib": [ "es2015" ], "target": "es6", /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', 'ES2018', 'ES2019' or 'ESNEXT'. */ "module": "commonjs", /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', or 'ESNext'. */ "outDir": "./lib", /* Redirect output structure to the directory. */