first commit

This commit is contained in:
oboard
2026-03-31 19:37:23 +08:00
commit 727c2a0f1e
2066 changed files with 516141 additions and 0 deletions

29
tsconfig.json Normal file
View File

@@ -0,0 +1,29 @@
{
"compilerOptions": {
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "bundler",
"allowJs": true,
"checkJs": false,
"jsx": "react-jsx",
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"strict": false,
"baseUrl": ".",
"paths": {
"src/*": [
"./src/*"
]
},
"types": [
"bun"
]
},
"include": [
"src/**/*",
"vendor/**/*",
"shims/**/*"
]
}