chore: configure typescript, biome, and package scripts

This commit is contained in:
MythEclipse
2026-05-18 07:23:22 +07:00
parent 252b2e4a1f
commit 9c5a855f7d
3 changed files with 56 additions and 4 deletions
+15
View File
@@ -0,0 +1,15 @@
{
"compilerOptions": {
"lib": ["ESNext"],
"module": "ESNext",
"target": "ESNext",
"moduleResolution": "Bundler",
"moduleDetection": "force",
"strict": true,
"skipLibCheck": true,
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"types": ["bun-types"]
},
"include": ["src/**/*", "test/**/*"]
}