aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-web/design-system/tsconfig.json
blob: f270502ed24e9b1e8922aa1f3ce44f721cd26ee5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
  "extends": "../tsconfig.base",
  "compilerOptions": {
    "allowSyntheticDefaultImports": true,
    "baseUrl": ".",
    "forceConsistentCasingInFileNames": true,
    "isolatedModules": true,
    "lib": ["dom", "dom.iterable", "es2022"],
    "jsx": "react-jsx",
    "module": "commonjs",
    "noEmit": true,
    "paths": {
      "~components/*": ["src/components/*"],
      "~helpers/*": ["src/helpers/*"],
      "~icons/*": ["src/icons/*"],
      "~types/*": ["src/types/*"],
      "~utils/*": ["src/utils/*"]
    },
    "resolveJsonModule": true,
    "skipLibCheck": true
  },
  "include": ["./src/**/*"]
}