tsconfig.json 937 B

12345678910111213141516171819202122232425262728293031323334353637
  1. {
  2. "compilerOptions": {
  3. "allowJs": false,
  4. "alwaysStrict": false,
  5. "declaration": false,
  6. "declarationMap": false,
  7. "downlevelIteration": true,
  8. "inlineSources": true,
  9. "importHelpers": true,
  10. "lib": ["esnext", "dom"],
  11. "module": "esnext",
  12. "moduleResolution": "node",
  13. "noEmitHelpers": true,
  14. "noFallthroughCasesInSwitch": true,
  15. "noImplicitAny": false,
  16. "noImplicitReturns": true,
  17. "noImplicitUseStrict": true,
  18. "noImplicitThis": true,
  19. "noUnusedLocals": true,
  20. "noUnusedParameters": true,
  21. "pretty": true,
  22. "sourceMap": true,
  23. "strict": true,
  24. "target": "es5",
  25. "strictBindCallApply": false,
  26. "esModuleInterop": true,
  27. "jsx": "react",
  28. "baseUrl": ".",
  29. "outDir": "src/sentry/static/sentry/dist",
  30. "paths": {
  31. "app/*": ["src/sentry/static/sentry/app/*"]
  32. },
  33. "plugins": [{"name": "typescript-styled-plugin"}]
  34. },
  35. "include": ["src"]
  36. }