task_receipts/server/tsconfig.json

18 lines
427 B
JSON

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