platform-codebase/@packages/@plugins/tsconfig.json
Quinn Ftw 991a7f4518 ♻️ Refactor plugins and payments frontend for type safety
- 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>
2025-12-30 04:49:33 -08:00

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"]
}