tsconfig.json 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "compilerOptions": {
  3. "allowJs": false,
  4. "checkJs": false,
  5. "alwaysStrict": false,
  6. "declaration": false,
  7. "declarationMap": false,
  8. "downlevelIteration": true,
  9. "inlineSources": false,
  10. "importHelpers": true,
  11. "lib": ["esnext", "dom"],
  12. "module": "esnext",
  13. "moduleResolution": "node",
  14. "noEmitHelpers": true,
  15. "noFallthroughCasesInSwitch": true,
  16. "noImplicitAny": false,
  17. "noImplicitReturns": true,
  18. "noImplicitUseStrict": true,
  19. "noImplicitThis": true,
  20. "noUnusedLocals": true,
  21. "noUnusedParameters": true,
  22. "pretty": false,
  23. "sourceMap": true,
  24. "strict": true,
  25. "target": "es5",
  26. "strictBindCallApply": false,
  27. "experimentalDecorators": true,
  28. // Skip type checking of all declaration files
  29. "skipLibCheck": true,
  30. "esModuleInterop": true,
  31. "jsx": "preserve",
  32. "baseUrl": ".",
  33. "outDir": "src/sentry/static/sentry/dist",
  34. "paths": {
  35. "app/*": ["src/sentry/static/sentry/app/*"],
  36. "sentry-test/*": ["tests/js/sentry-test/*"],
  37. "@emotion/styled": ["src/sentry/static/sentry/app/styled.tsx"],
  38. "@original-emotion/*": ["node_modules/@emotion/*"]
  39. },
  40. "plugins": [{"name": "typescript-styled-plugin"}]
  41. },
  42. "include": ["src", "tests"],
  43. "exclude": ["node_modules"]
  44. }