This commit is contained in:
2025-09-10 02:50:32 +02:00
commit be3d896ca1
9 changed files with 235 additions and 0 deletions

15
tsconfig.json Normal file
View File

@@ -0,0 +1,15 @@
{
"compilerOptions": {
"target": "ES2022",
"module": "ESNext",
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"noEmit": true,
"strict": true,
"skipLibCheck": true,
"noUnusedLocals": false,
"noUnusedParameters": false,
"lib": ["ES2022", "DOM", "WebWorker"],
"types": ["bun-types"]
}
}