feat: migrate to bun

This commit is contained in:
2026-07-21 02:28:16 +07:00
parent ee6b7c7738
commit 99dc12a5cc
12 changed files with 423 additions and 896 deletions
+21
View File
@@ -0,0 +1,21 @@
{
"compilerOptions": {
"target": "ESNext",
"module": "Preserve",
"moduleResolution": "bundler",
"moduleDetection": "force",
"lib": ["ESNext"],
"types": ["bun"],
"allowJs": true,
"esModuleInterop": true,
"verbatimModuleSyntax": true,
"skipLibCheck": true,
"noEmit": true,
"strict": true,
"noUncheckedIndexedAccess": true,
"noImplicitOverride": true
},
"include": ["src/**/*.ts", "src/**/*.d.ts"]
}