1
0
cvsa/packages/elysia/tsconfig.json

19 lines
368 B
JSON

{
"compilerOptions": {
"baseUrl": ".",
"target": "esnext",
"module": "esnext",
"moduleResolution": "bundler",
"types": ["bun-types"],
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"skipLibCheck": true,
"paths": {
"@core/*": ["../core/*"],
"@elysia/*": ["./*"],
"@crawler/*": ["../crawler/*"]
}
}
}