tsconfig.json 567 B

12345678910111213141516171819202122
  1. {
  2. "extends": "./node_modules/@sentry/typescript/tsconfig.json",
  3. "compilerOptions": {
  4. "noUnusedLocals": true,
  5. "noUnusedParameters": true,
  6. "strict": true,
  7. "declaration": false,
  8. "declarationMap": false,
  9. "allowJs": true,
  10. "esModuleInterop": true,
  11. "module": "commonjs",
  12. "jsx": "react",
  13. "baseUrl": ".",
  14. "outDir": "src/sentry/static/sentry/dist",
  15. "paths": {
  16. "app/*": ["src/sentry/static/sentry/app/*"]
  17. },
  18. },
  19. "include": [
  20. "src"
  21. ]
  22. }