task_receipts/server/tsconfig.json

17 lines
405 B
JSON

{
"compilerOptions": {
"target": "ES2020",
"module": "CommonJS",
"moduleResolution": "node",
"esModuleInterop": true,
"strict": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"baseUrl": ".",
"paths": {
"@shared/*": ["../shared/types/*"]
}
},
"include": ["src/**/*", "../shared/types/**/*"],
"exclude": ["node_modules", "dist"]
}