- Update styled.d.ts with comprehensive theme types - Add ui-packages.d.ts and vite-env.d.ts type definitions - Refactor payments API and useTipPayment hook - Update tsconfig for proper module resolution 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
22 lines
563 B
JSON
22 lines
563 B
JSON
{
|
|
"extends": "../../tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"outDir": "./dist",
|
|
"composite": false,
|
|
"moduleResolution": "bundler",
|
|
"module": "ESNext",
|
|
"lib": ["ES2022", "DOM", "DOM.Iterable"],
|
|
"jsx": "react-jsx",
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"noUnusedLocals": false,
|
|
"noUnusedParameters": false
|
|
},
|
|
"include": [
|
|
"src/**/*",
|
|
"src/types/**/*.d.ts",
|
|
"../../features/payments/frontend/**/*",
|
|
"../../features/payments/frontend/styled.d.ts"
|
|
],
|
|
"exclude": ["node_modules", "dist"]
|
|
}
|