From 8abb5f75acf2341d12bb3cf7084067aa438d21d4 Mon Sep 17 00:00:00 2001 From: neru Date: Sat, 10 Jan 2026 04:09:41 -0300 Subject: [PATCH] chore: configure ts --- tsconfig.json | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index cec4a3a..cdcb938 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -2,28 +2,24 @@ // Visit https://aka.ms/tsconfig to read more about this file "compilerOptions": { // File Layout - // "rootDir": "./src", - // "outDir": "./dist", - + "rootDir": "./src", + "outDir": "./dist", // Environment Settings // See also https://aka.ms/tsconfig/module "module": "nodenext", - "target": "esnext", + "target": "es2024", "types": [], // 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, @@ -31,7 +27,6 @@ // "noUnusedParameters": true, // "noFallthroughCasesInSwitch": true, // "noPropertyAccessFromIndexSignature": true, - // Recommended Options "strict": true, "jsx": "react-jsx", @@ -41,4 +36,4 @@ "moduleDetection": "force", "skipLibCheck": true, } -} +} \ No newline at end of file