From 0b48873162fa1ecd14863200ae6fc2f274ce08a1 Mon Sep 17 00:00:00 2001 From: mhnpd Date: Fri, 8 Dec 2023 15:16:26 +0545 Subject: [PATCH] Update tsconfig.json with strict compiler options --- docs/tsconfig.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/docs/tsconfig.json b/docs/tsconfig.json index 314eab8a..31194480 100644 --- a/docs/tsconfig.json +++ b/docs/tsconfig.json @@ -2,6 +2,10 @@ // This file is not used in compilation. It is here just for a nice editor experience. "extends": "@docusaurus/tsconfig", "compilerOptions": { - "baseUrl": "." + "baseUrl": ".", + "module": "NodeNext", + "moduleResolution": "NodeNext", + "forceConsistentCasingInFileNames": true, + "strict": true } }