From d706c5650662367c4d7b132e3e6eb8dc28713c18 Mon Sep 17 00:00:00 2001 From: Will Eastcott Date: Sat, 15 Jun 2024 18:16:25 +0100 Subject: [PATCH] Reorder tsconfig.json --- tsconfig.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 0364580..ee5eb60 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,14 +1,14 @@ { "compilerOptions": { - "noImplicitAny": true, "allowJs": true, - "target": "es6", "lib": [ "es2019", "dom", "dom.iterable" ], - "moduleResolution": "node" + "moduleResolution": "node", + "noImplicitAny": true, + "target": "es6" }, "include": [ "submodules/editor-api/**/*.js",