From 878847b5d2f9189f073ee3c9b623b04dc2c47b01 Mon Sep 17 00:00:00 2001 From: Julien Calixte Date: Mon, 9 Feb 2026 12:00:05 +0100 Subject: [PATCH] chore: deno activated --- .vscode/settings.json | 2 +- tsconfig.json | 29 ----------------------------- 2 files changed, 1 insertion(+), 30 deletions(-) delete mode 100644 tsconfig.json diff --git a/.vscode/settings.json b/.vscode/settings.json index 3662b37..4b9fb22 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,3 +1,3 @@ { - "typescript.tsdk": "node_modules/typescript/lib" + "deno.enable": true } \ No newline at end of file diff --git a/tsconfig.json b/tsconfig.json deleted file mode 100644 index bfa0fea..0000000 --- a/tsconfig.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "compilerOptions": { - // Environment setup & latest features - "lib": ["ESNext"], - "target": "ESNext", - "module": "Preserve", - "moduleDetection": "force", - "jsx": "react-jsx", - "allowJs": true, - - // Bundler mode - "moduleResolution": "bundler", - "allowImportingTsExtensions": true, - "verbatimModuleSyntax": true, - "noEmit": true, - - // Best practices - "strict": true, - "skipLibCheck": true, - "noFallthroughCasesInSwitch": true, - "noUncheckedIndexedAccess": true, - "noImplicitOverride": true, - - // Some stricter flags (disabled by default) - "noUnusedLocals": false, - "noUnusedParameters": false, - "noPropertyAccessFromIndexSignature": false - } -}