egg_tools/tsconfig.json
zhaoyingbo 7ce872237a
All checks were successful
/ release (push) Successful in 29s
feat(net-tool): 引入 bun-types,更新类型定义和依赖
2025-03-17 12:11:35 +00:00

29 lines
704 B
JSON

{
"compilerOptions": {
"lib": ["ESNext"],
"module": "esnext",
"target": "esnext",
"moduleResolution": "bundler",
"moduleDetection": "force",
"allowImportingTsExtensions": false,
"noEmit": false,
"composite": true,
"strict": true,
"downlevelIteration": true,
"skipLibCheck": true,
"jsx": "react-jsx",
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"allowJs": true,
"declaration": true,
"sourceMap": true,
"rootDir": "./packages",
"outDir": "./dist",
"types": [
"bun-types" // add Bun global
]
},
"include": ["./packages/**/*"],
"exclude": ["node_modules", "**/*.test.ts"]
}