tsconfig.json 250 B

123456789101112
  1. {
  2. "compileOnSave": true,
  3. "compilerOptions": {
  4. "target": "esnext",
  5. "outFile": "game.js",
  6. "strict": true,
  7. "allowSyntheticDefaultImports": true,
  8. "types": [
  9. "phaser"
  10. ]
  11. }
  12. }