From 089654f4251c235b5bc34b7774408a6a762ff1da Mon Sep 17 00:00:00 2001 From: gvozdvmozgu Date: Sun, 16 Jun 2024 13:32:52 -0400 Subject: [PATCH] chore: fix tsconfig.json --- editors/code/tsconfig.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/editors/code/tsconfig.json b/editors/code/tsconfig.json index 225a1bb6c..769888fa1 100644 --- a/editors/code/tsconfig.json +++ b/editors/code/tsconfig.json @@ -8,10 +8,10 @@ ], "sourceMap": true, "rootDir": "src", - "strict": true /* enable all strict type-checking options */ + "strict": true, /* enable all strict type-checking options */ /* Additional Checks */ - // "noImplicitReturns": true, /* Report error when not all code paths in function return a value. */ - // "noFallthroughCasesInSwitch": true, /* Report errors for fallthrough cases in switch statement. */ - // "noUnusedParameters": true, /* Report errors on unused parameters. */ + "noImplicitReturns": true, /* Report error when not all code paths in function return a value. */ + "noFallthroughCasesInSwitch": true, /* Report errors for fallthrough cases in switch statement. */ + "noUnusedParameters": true, /* Report errors on unused parameters. */ } } \ No newline at end of file