From da9ba0d63eafa857d86a9d3e96bc3b7347656629 Mon Sep 17 00:00:00 2001 From: WaitingIdly <25394029+WaitingIdly@users.noreply.github.com> Date: Sun, 24 Apr 2022 19:17:24 -0700 Subject: [PATCH] fix weird jsconfig error in vscode --- jsconfig.json | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/jsconfig.json b/jsconfig.json index 24220941e..acfd26d5a 100644 --- a/jsconfig.json +++ b/jsconfig.json @@ -1,7 +1,11 @@ { - "compilerOptions": { - "module": "ES6", - "target": "es6" - }, - "include": ["src/**/*", "javascripts/**/*"] - } \ No newline at end of file + "compilerOptions": { + "module": "ES6", + "target": "es6" + }, + "include": [ + "src/**/*", + "javascripts/**/*" + ], + "noEmit": true +}