mirror of
https://github.com/chenqinggang001/claude-code-build.git
synced 2026-08-05 12:30:22 +08:00
28 lines
710 B
JSON
28 lines
710 B
JSON
{
|
|
"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"]
|
|
}
|