Standardize linting rules and TypeScript compiler options 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
27 lines
868 B
JSON
27 lines
868 B
JSON
{
|
|
"extends": "../../../tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"lib": ["ES2022", "DOM", "DOM.Iterable"],
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"jsx": "react-jsx",
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"outDir": "./dist",
|
|
"noUnusedLocals": false,
|
|
"noUnusedParameters": false,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["./src/*"],
|
|
"@lilith/api-client": ["../../../@packages/@infrastructure/api-client/src"],
|
|
"@ui/primitives": ["../../../node_modules/@transquinnftw/ui-primitives/src"],
|
|
"@ui/payment": ["../../../node_modules/@transquinnftw/ui-payment/src"],
|
|
"@ui/theme": ["../../../node_modules/@transquinnftw/ui-theme/src"]
|
|
}
|
|
},
|
|
"include": ["src"],
|
|
"exclude": ["node_modules", "dist"]
|
|
}
|