rps-royale/apps/contracts/tsconfig.json
Ubuntu dbe6a90e93 Fix build errors: Phaser SSR, TypeScript types, and ArenaScene logic
- Use next/dynamic with ssr:false for Phaser game page
- Change tsconfig target to ES2022 for BigInt support
- Replace Phaser default imports with namespace imports
- Fix ArenaScene button logic using phase state machine
- Remove invalid add:false from Phaser graphics config
- Fix MatchState commitDeadline type

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
2026-05-24 02:29:32 +00:00

14 lines
353 B
JSON

{
"compilerOptions": {
"target": "ES2022",
"module": "NodeNext",
"moduleResolution": "NodeNext",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true
},
"include": ["./test/**/*", "./ignition/**/*"],
"files": ["./hardhat.config.ts"]
}