From 99a01ace4fe5b6340995143432dd128cc8d69d70 Mon Sep 17 00:00:00 2001 From: Scott Anderson <662325+scottanderson@users.noreply.github.com> Date: Sun, 6 Apr 2025 16:06:29 -0400 Subject: [PATCH] comments --- tsconfig.json | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/tsconfig.json b/tsconfig.json index 043a34236..c1773f9b3 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,10 +1,18 @@ +// https://www.typescriptlang.org/tsconfig/ { "compilerOptions": { + // Language and Environment "target": "ES2020", + + // Modules "module": "ESNext", "rootDir": ".", "moduleResolution": "node", + + // Emit "sourceMap": true, + + // Type Checking "allowSyntheticDefaultImports": true, "esModuleInterop": true, "experimentalDecorators": true,