From d975547efeed2b38f059ec6e789d4780e9714e90 Mon Sep 17 00:00:00 2001 From: neru Date: Sat, 10 Jan 2026 09:44:02 -0300 Subject: [PATCH] style: remove comments --- tsconfig.json | 19 ------------------- 1 file changed, 19 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index cebd64e..f95443d 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,36 +1,17 @@ { - // Visit https://aka.ms/tsconfig to read more about this file "compilerOptions": { - // File Layout "rootDir": "./src", "outDir": "./dist", - // Environment Settings - // See also https://aka.ms/tsconfig/module "module": "nodenext", "target": "es2024", "types": ["node"], - // For nodejs: - // "lib": ["esnext"], - // "types": ["node"], - // and npm install -D @types/node - // Other Outputs "sourceMap": true, "declaration": true, "declarationMap": true, - // Stricter Typechecking Options "noUncheckedIndexedAccess": true, "exactOptionalPropertyTypes": true, - // Style Options - // "noImplicitReturns": true, - // "noImplicitOverride": true, - // "noUnusedLocals": true, - // "noUnusedParameters": true, - // "noFallthroughCasesInSwitch": true, - // "noPropertyAccessFromIndexSignature": true, - // Recommended Options "strict": true, "jsx": "react-jsx", - // "verbatimModuleSyntax": true, "isolatedModules": true, "noUncheckedSideEffectImports": true, "moduleDetection": "force",