From a953756128ccfa3bdb684f9df08fa0dccff39a4a Mon Sep 17 00:00:00 2001 From: ilkin-overleaf <100852799+ilkin-overleaf@users.noreply.github.com> Date: Tue, 31 May 2022 12:09:09 +0300 Subject: [PATCH] Merge pull request #8139 from overleaf/ii-typescript-enable-strict-mode [web] Enable TypeScript strict mode GitOrigin-RevId: aa159fc5faf11c91382dc2498e8ec84068d5c637 --- services/web/tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/web/tsconfig.json b/services/web/tsconfig.json index a0b5e28ffd..89612348b0 100644 --- a/services/web/tsconfig.json +++ b/services/web/tsconfig.json @@ -6,7 +6,7 @@ // "checkJs": true /* Report errors in .js files. */, "jsx": "preserve" /* Specify JSX code generation */, "noEmit": true /* Do not emit outputs. */, - // "strict": true /* Enable all strict type-checking options. */, + "strict": true /* Enable all strict type-checking options. */, "moduleResolution": "node" /* Specify module resolution strategy */, "esModuleInterop": true /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */, "skipLibCheck": true /* Skip type checking of declaration files. */,