2D Run-and-gun shooter inspired by One Man's Doomsday, Counter-Strike, and Metal Slug.
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 
 
 
 

23 wiersze
541 B

  1. {
  2. "include": ["remix.env.d.ts", "**/*.ts", "**/*.tsx"],
  3. "compilerOptions": {
  4. "lib": ["DOM", "DOM.Iterable", "ES2019"],
  5. "isolatedModules": true,
  6. "esModuleInterop": true,
  7. "jsx": "react-jsx",
  8. "moduleResolution": "node",
  9. "resolveJsonModule": true,
  10. "target": "ES2019",
  11. "strict": true,
  12. "allowJs": true,
  13. "forceConsistentCasingInFileNames": true,
  14. "baseUrl": ".",
  15. "paths": {
  16. "~/*": ["./app/*"]
  17. },
  18. // Remix takes care of building everything in `remix build`.
  19. "noEmit": true
  20. }
  21. }