first commit

This commit is contained in:
chenqg
2026-04-01 18:04:13 +08:00
commit f6f2b2a5e6
2028 changed files with 515929 additions and 0 deletions
+27
View File
@@ -0,0 +1,27 @@
{
"compilerOptions": {
"target": "ES2022",
"module": "ESNext",
"moduleResolution": "bundler",
"jsx": "react-jsx",
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": false,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"declaration": false,
"declarationMap": false,
"sourceMap": false,
"outDir": "./dist",
"rootDir": ".",
"baseUrl": ".",
"paths": {
"src/*": ["./src/*"],
"bun:bundle": ["./shim/bun-bundle.ts"]
},
"types": ["bun-types", "node"]
},
"include": ["src/**/*", "shim/**/*"],
"exclude": ["node_modules", "dist", "node_modules_vendored"]
}