New workspace-specific CLI for @packages operations: - consumers find/update commands - publish pending/package commands - ci-status command Ported from bash scripts to TypeScript for better maintainability. Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
23 lines
554 B
JSON
23 lines
554 B
JSON
{
|
|
"compilerOptions": {
|
|
"outDir": "./dist",
|
|
"rootDir": "./src",
|
|
"module": "ESNext",
|
|
"moduleResolution": "Bundler",
|
|
"target": "ES2022",
|
|
"lib": ["ES2022"],
|
|
"types": ["node"],
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"sourceMap": true,
|
|
"strict": true,
|
|
"noImplicitAny": true,
|
|
"strictNullChecks": true,
|
|
"resolveJsonModule": true,
|
|
"allowSyntheticDefaultImports": true
|
|
},
|
|
"include": ["src/**/*"],
|
|
"exclude": ["node_modules", "dist"]
|
|
}
|