🔧 chore: add typecheck/lint/format tooling

This commit is contained in:
2026-07-12 18:18:17 +07:00
parent 90b698ad68
commit 7323a3c79c
4 changed files with 81 additions and 6 deletions
+17
View File
@@ -0,0 +1,17 @@
{
"compilerOptions": {
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "bundler",
"lib": ["ESNext"],
"types": ["bun"],
"strict": true,
"skipLibCheck": true,
"noEmit": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"allowImportingTsExtensions": true,
"verbatimModuleSyntax": true
},
"include": ["src"]
}