tsconfig.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "compilerOptions": {
  3. "allowJs": false,
  4. "alwaysStrict": false,
  5. "declaration": false,
  6. "declarationMap": false,
  7. "downlevelIteration": true,
  8. "inlineSources": false,
  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. "@emotion/styled": ["src/sentry/static/sentry/app/styled.tsx"],
  34. "@original-emotion/*": ["node_modules/@emotion/*"]
  35. },
  36. "plugins": [{"name": "typescript-styled-plugin"}]
  37. },
  38. "include": ["src"]
  39. }