12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- {
- "compilerOptions": {
- "allowJs": false,
- "checkJs": false,
- "alwaysStrict": false,
- "declaration": false,
- "declarationMap": false,
- "downlevelIteration": true,
- "inlineSources": false,
- "importHelpers": true,
- "lib": ["esnext", "dom"],
- "module": "esnext",
- "moduleResolution": "node",
- "noEmitHelpers": true,
- "noFallthroughCasesInSwitch": true,
- "noImplicitAny": false,
- "noImplicitReturns": true,
- "noImplicitUseStrict": true,
- "noImplicitThis": true,
- "noUnusedLocals": true,
- "noUnusedParameters": true,
- "pretty": true,
- "sourceMap": true,
- "strict": true,
- "target": "es5",
- "strictBindCallApply": false,
- "experimentalDecorators": true,
- // Skip type checking of all declaration files
- "skipLibCheck": true,
- "esModuleInterop": true,
- "jsx": "preserve",
- "baseUrl": ".",
- "outDir": "src/sentry/static/sentry/dist",
- "paths": {
- "app/*": ["src/sentry/static/sentry/app/*"],
- "@emotion/styled": ["src/sentry/static/sentry/app/styled.tsx"],
- "@original-emotion/*": ["node_modules/@emotion/*"]
- },
- "plugins": [{"name": "typescript-styled-plugin"}]
- },
- "include": ["src"],
- "exclude": ["node_modules"]
- }
|