1
0

tsconfig.json 690 B

12345678910111213141516171819202122232425262728
  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. "noImplicitReturns": true,
  11. "noUncheckedIndexedAccess": true,
  12. "esModuleInterop": true,
  13. "skipLibCheck": true,
  14. "baseUrl": "./",
  15. "incremental": true,
  16. "tsBuildInfoFile": "tmp/cache/tsconfig.tsbuildinfo",
  17. "paths": {
  18. "mastodon": ["app/javascript/mastodon"],
  19. "mastodon/*": ["app/javascript/mastodon/*"],
  20. "@/*": ["app/javascript/*"]
  21. }
  22. },
  23. "include": [
  24. "app/javascript/mastodon",
  25. "app/javascript/entrypoints",
  26. "app/javascript/types"
  27. ]
  28. }