tsconfig.json 376 B

1234567891011121314151617181920
  1. {
  2. "compilerOptions": {
  3. "allowSyntheticDefaultImports": true,
  4. "declaration": false,
  5. "jsx": "react",
  6. "lib": ["ESNext", "dom"],
  7. "module": "ESNext",
  8. "moduleResolution": "Node",
  9. "target": "ESNext",
  10. "strict": false,
  11. "baseUrl": "app/javascript"
  12. },
  13. "exclude": [
  14. "node_modules",
  15. "vendor",
  16. "public"
  17. ],
  18. "compileOnSave": false
  19. }