Update shared packages to use local configs instead of central references: - Update .eslintrc.json files across all @packages/* - Update package.json dev dependencies - Update tsconfig.json extends paths - Update i18n common.json locale file This aligns with the config consolidation, allowing each package to manage its own configuration independently. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
10 lines
228 B
JSON
10 lines
228 B
JSON
{
|
|
"extends": "@transquinnftw/configs/typescript/base.json",
|
|
"compilerOptions": {
|
|
"outDir": "./dist",
|
|
"rootDir": "./src",
|
|
"composite": false
|
|
},
|
|
"include": ["src/**/*"],
|
|
"exclude": ["node_modules", "dist"]
|
|
}
|