packages/rfq-indexer/api/src/tsconfig.json
{
"compilerOptions": {
// Type checking
"strict": true,
"noUncheckedIndexedAccess": true,
// Interop constraints
"verbatimModuleSyntax": false,
"esModuleInterop": true,
"isolatedModules": true,
"allowSyntheticDefaultImports": true,
"resolveJsonModule": true,
// Language and environment
"moduleResolution": "bundler",
"module": "ESNext",
"noEmit": true,
"lib": ["ES2022"],
"target": "ES2022",
// Skip type checking for node modules
"skipLibCheck": true,
// Paths
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"]
}
},
"include": ["./**/*.ts"],
"exclude": ["node_modules"]
}