From 60a673e1cfa22451925d988cef4a3e9ea51a151c Mon Sep 17 00:00:00 2001 From: Dominic Ferrando Date: Sat, 22 Aug 2026 15:36:23 -0400 Subject: [PATCH] Update deps --- package.json | 4 ++-- tsconfig.json | 10 ++++++---- 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/package.json b/package.json index 8fc1496..6201bf8 100644 --- a/package.json +++ b/package.json @@ -3,12 +3,12 @@ "private": true, "devDependencies": { "@types/bun": "latest", - "@types/node": "^25.8.0" + "@types/node": "^25.9.5" }, "peerDependencies": { "typescript": "^5.9.3" }, "dependencies": { - "discord.js": "^14.26.4" + "discord.js": "^14.27.0" } } diff --git a/tsconfig.json b/tsconfig.json index bfa0fea..607ccbf 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,26 +1,28 @@ { "compilerOptions": { // Environment setup & latest features - "lib": ["ESNext"], + "lib": [ + "ESNext" + ], "target": "ESNext", "module": "Preserve", "moduleDetection": "force", "jsx": "react-jsx", "allowJs": true, - + "types": [ + "bun" + ], // 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,