tsconfig.json 973 B

1234567891011121314151617181920212223242526272829303132333435363738
  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. "experimentalDecorators": true,
  27. "esModuleInterop": true,
  28. "jsx": "react",
  29. "baseUrl": ".",
  30. "outDir": "src/sentry/static/sentry/dist",
  31. "paths": {
  32. "app/*": ["src/sentry/static/sentry/app/*"]
  33. },
  34. "plugins": [{"name": "typescript-styled-plugin"}]
  35. },
  36. "include": ["src"]
  37. }