New top-level package organization replacing @core/* structure. Includes: - @config: Port configuration - @design-tokens: Theme system - @types: Domain types and models - @validation: Input validation - @ui: React component packages 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
17 lines
294 B
JSON
17 lines
294 B
JSON
{
|
|
"extends": "../../tsconfig.base.json",
|
|
"include": [
|
|
"src/**/*"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"dist"
|
|
],
|
|
"compilerOptions": {
|
|
"rootDir": "./src",
|
|
"outDir": "./dist",
|
|
"moduleResolution": "bundler",
|
|
"module": "ESNext",
|
|
"lib": ["ES2022", "DOM"]
|
|
}
|
|
}
|