Files
TorrentClient/packages/server/tsconfig.json
Peter Stockings 8bcf8a43fe Initial commit
2026-01-01 16:11:06 +11:00

25 lines
568 B
JSON

{
"compilerOptions": {
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "Node",
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"outDir": "dist",
"baseUrl": ".",
"paths": {
"@torrent-client/shared": [
"../shared/src"
]
},
"types": [
"bun-types"
]
},
"include": [
"src/**/*"
],
"exclude": []
}