From 7fbe32cc7c3a841d06876b008dc65d19e4349708 Mon Sep 17 00:00:00 2001 From: maxjeffos <44034094+maxjeffos@users.noreply.github.com> Date: Mon, 9 Aug 2021 14:14:17 -0400 Subject: [PATCH] chore: update tsconfig settings --- tsconfig.settings.json | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/tsconfig.settings.json b/tsconfig.settings.json index df4e4c0650e..2a6f6c2a3e1 100644 --- a/tsconfig.settings.json +++ b/tsconfig.settings.json @@ -3,11 +3,13 @@ "outDir": "./dist", "rootDir": ".", "pretty": true, - "target": "es2017", - "lib": ["es2017", "dom"], + "moduleResolution": "node", + "target": "es2018", + "lib": ["ES2018", "dom"], "module": "commonjs", "allowJs": true, "sourceMap": true, + "resolveJsonModule": true, "strict": true, "noImplicitAny": false, // Needed to compile tap and ansi-escapes "composite": true