5f562cbc5a
- tsconfig: 启用 emit (rootDir/outDir/composite), 添加 project references - shebang: bun → node - bin: src/index.ts → dist/index.js - import.meta.dir → import.meta.dirname (去掉 Bun 专有 API) - prompts 目录移到包根, src/dist 路径统一 - 修复 exactOptionalPropertyTypes 类型错误 Fixes #58
14 lines
241 B
JSON
14 lines
241 B
JSON
{
|
|
"extends": "../../tsconfig.json",
|
|
"compilerOptions": {
|
|
"rootDir": "src",
|
|
"outDir": "dist"
|
|
},
|
|
"include": ["src"],
|
|
"exclude": ["src/**/*.test.ts"],
|
|
"references": [
|
|
{ "path": "../core" },
|
|
{ "path": "../fs" }
|
|
]
|
|
}
|