Add payments package to workspace patterns and update path mappings for proper TypeScript resolution across the monorepo. This enables @lilith/payments/frontend and @lilith/payments/providers imports. - Add features/payments to pnpm-workspace.yaml - Add @lilith/payments path mappings to tsconfig.base.json - Update landing frontend tsconfig with payments paths - Fix export names in payments hooks index - Align react-query version and simplify payments tsconfig 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
14 lines
192 B
JSON
14 lines
192 B
JSON
{
|
|
"extends": "../../tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"noEmit": true
|
|
},
|
|
"include": [
|
|
"**/*.ts",
|
|
"**/*.tsx"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"dist"
|
|
]
|
|
}
|