Files
playzer/apps/backend/tsconfig.json
2026-04-16 15:45:49 -03:00

20 lines
341 B
JSON

{
"compilerOptions": {
"ignoreDeprecations": "6.0",
"strict": true,
"skipLibCheck": true,
"types": [
"bun"
],
"baseUrl": ".",
"moduleResolution": "bundler",
"paths": {
"@/*": [
"src/*"
]
},
"outDir": "./dist",
"jsx": "react-jsx",
"jsxImportSource": "hono/jsx"
}
}