This repository has been archived on 2024-10-29. You can view files and clone it, but cannot push or open issues or pull requests.
scoresaber-reloadedv3/projects/backend/tsconfig.json

17 lines
378 B
JSON
Raw Normal View History

2024-10-08 14:32:02 +00:00
{
"compilerOptions": {
2024-10-09 00:17:00 +00:00
"target": "ES2022",
2024-10-08 14:32:02 +00:00
"module": "ES2022",
2024-10-09 00:17:00 +00:00
"moduleResolution": "Bundler",
2024-10-08 14:32:02 +00:00
"types": ["bun-types"],
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
2024-10-09 00:17:00 +00:00
"skipLibCheck": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"jsx": "react",
2024-10-28 15:47:41 +00:00
"incremental": true
}
2024-10-08 14:32:02 +00:00
}