Layout scaffolding for Web apps.
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 

20 строки
494 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. // Remix takes care of building everything in `remix build`.
  16. "noEmit": true
  17. }
  18. }