mirror of
https://github.com/AutoMaker-Org/automaker.git
synced 2026-01-29 22:02:02 +00:00
Move ESM module configuration from individual package tsconfigs to the shared base configuration for better maintainability. Changes: - Updated libs/tsconfig.base.json: - Changed module: "commonjs" → "NodeNext" - Changed moduleResolution: "node" → "NodeNext" - Cleaned up all lib package tsconfigs: - Removed duplicate module/moduleResolution settings - Now all packages inherit ESM config from base - Packages: dependency-resolver, git-utils, model-resolver, platform, utils Benefits: ✅ Single source of truth for module configuration ✅ Less duplication, easier maintenance ✅ Consistent ESM behavior across all lib packages ✅ Simpler package-specific tsconfig files All packages build successfully. All 632 tests passing. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
17 lines
367 B
JSON
17 lines
367 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2020",
|
|
"module": "NodeNext",
|
|
"moduleResolution": "NodeNext",
|
|
"lib": ["ES2020"],
|
|
"types": ["node"],
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"resolveJsonModule": true
|
|
}
|
|
}
|