tsconfig.json 615 B

1234567891011121314151617181920212223242526
  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. "incremental": true,
  14. "tsBuildInfoFile": "tmp/cache/tsconfig.tsbuildinfo",
  15. "paths": {
  16. "mastodon": ["app/javascript/mastodon"],
  17. "mastodon/*": ["app/javascript/mastodon/*"],
  18. "@/*": ["app/javascript/*"]
  19. }
  20. },
  21. "include": [
  22. "app/javascript/mastodon",
  23. "app/javascript/packs",
  24. "app/javascript/types"
  25. ]
  26. }