From a05d1629d1c0a2a5beb0c4327e60f6bbb1f20a20 Mon Sep 17 00:00:00 2001 From: ELLIOTTCABLE Date: Mon, 16 Sep 2019 21:47:26 -0500 Subject: [PATCH] (- meta fix typo) Lowercase tsconfig values --- tsconfig.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 3b218ddd..4f1d9c4c 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,12 +1,12 @@ { "compilerOptions": { - "moduleResolution": "Node", + "moduleResolution": "node", "noImplicitAny": false, "noEmitOnError": true, "outDir": "build/tsc-out", "sourceMap": true, - "target": "ES2017", - "lib": ["ES2017","dom", "dom.iterable"], + "target": "es2017", + "lib": ["es2017","dom", "dom.iterable"], "typeRoots": ["node_modules/@types", "node_modules/web-ext-types/"], "experimentalDecorators": true, "alwaysStrict": true,