You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
562 B

  1. {
  2. "compilerOptions": {
  3. "allowJs": true,
  4. "module": "ESNext",
  5. "moduleResolution": "bundler",
  6. "jsx": "react-jsx",
  7. "strict": true,
  8. "isolatedModules": true,
  9. "target": "ESNext",
  10. "esModuleInterop": true,
  11. "forceConsistentCasingInFileNames": true,
  12. "noEmit": true,
  13. "paths": {
  14. "@/*": ["./resources/js/*"],
  15. "ziggy-js": ["./vendor/tightenco/ziggy"]
  16. }
  17. },
  18. "include": ["resources/js/**/*.ts", "resources/js/**/*.tsx", "resources/js/**/*.d.ts"]
  19. }