Files
Kyoo/api/tsconfig.json
2025-03-18 22:05:45 +01:00

26 lines
419 B
JSON

{
"compilerOptions": {
"target": "ES2021",
"module": "ES2022",
"moduleResolution": "node",
"types": [
"bun-types"
],
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"skipLibCheck": true,
"noErrorTruncation": true,
"resolveJsonModule": true,
"baseUrl": ".",
"paths": {
"~/*": [
"./src/*"
],
"package.json": [
"package.json"
]
}
}
}