123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124 |
- {
- "$schema": "http://json.schemastore.org/tsconfig",
- "compilerOptions": {
-
-
-
-
-
-
-
-
-
-
-
-
- "module": "commonjs",
- "target": "ES2022",
- "moduleResolution": "node",
-
- "lib": ["esnext", "dom"],
-
- "skipLibCheck": true,
-
- "noEmit": true,
-
-
- "jsx": "preserve",
- "jsxImportSource": "@emotion/react",
-
- "alwaysStrict": false,
- "noFallthroughCasesInSwitch": true,
- "noImplicitAny": false,
- "noImplicitReturns": true,
- "noImplicitThis": true,
- "noUnusedLocals": true,
- "noUnusedParameters": true,
- "strict": true,
- "strictBindCallApply": false,
- "useUnknownInCatchVariables": false,
-
-
-
-
-
-
-
-
-
-
-
-
-
- "declaration": false,
- "declarationMap": false,
- "downlevelIteration": true,
- "importHelpers": true,
- "inlineSources": false,
- "noEmitHelpers": true,
- "sourceMap": true,
- "pretty": false,
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- "allowJs": false,
- "checkJs": false,
- "esModuleInterop": true,
- "experimentalDecorators": true,
- "resolveJsonModule": true,
- "baseUrl": "../",
- "paths": {
- "sentry/*": ["static/app/*"],
- "sentry-test/*": ["tests/js/sentry-test/*"],
- "sentry-images/*": ["static/images/*"],
- "sentry-locale/*": ["src/sentry/locale/*"],
- "sentry-logos/*": ["src/sentry/static/sentry/images/logos/*"],
- "sentry-fonts/*": ["static/fonts/*"],
-
-
- "integration-docs-platforms": [
- "fixtures/integration-docs/_platforms.json",
- "src/sentry/integration-docs/_platforms.json"
- ]
- },
- "plugins": [
-
-
- {"name": "@styled/typescript-styled-plugin"}
- ]
- },
- "include": ["../static/app", "../tests/js", "../fixtures/js-stubs"],
- "exclude": ["../node_modules", "../**/*.benchmark.ts"],
- "ts-node": {
- "transpileOnly": true
- }
- }
|