tsconfig.json 498 B

1234567891011121314151617181920212223
  1. {
  2. "compilerOptions": {
  3. "jsx": "react-jsx",
  4. "target": "esnext",
  5. "module": "CommonJS",
  6. "moduleResolution": "node",
  7. "allowJs": true,
  8. "noEmit": true,
  9. "strict": true,
  10. "esModuleInterop": true,
  11. "skipLibCheck": true,
  12. "baseUrl": "./",
  13. "paths": {
  14. "mastodon": ["app/javascript/mastodon"],
  15. "mastodon/*": ["app/javascript/mastodon/*"]
  16. }
  17. },
  18. "include": [
  19. "app/javascript/mastodon",
  20. "app/javascript/packs",
  21. "app/javascript/types"
  22. ]
  23. }