switching language to tswq

This commit is contained in:
2025-08-17 16:10:13 -06:00
parent f554b09efc
commit 03662d980f
26 changed files with 573 additions and 4596 deletions

19
tsconfig.json Normal file
View File

@@ -0,0 +1,19 @@
{
"compilerOptions": {
"target": "ES2022",
"module": "ESNext",
"moduleResolution": "bundler",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"declaration": true,
"declarationMap": true,
"outDir": "./dist",
"rootDir": ".",
"types": ["bun-types"]
},
"include": ["./**/*"],
"exclude": ["node_modules", "dist", "test/**/*"]
}