aboutsummaryrefslogtreecommitdiff
path: root/apps/web/tsconfig.json
blob: 67626bbcc629ec8724f48bf27a4878b251309024 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
  "compilerOptions": {
    "incremental": true,
    "jsx": "preserve",
    "paths": {
      "@/*": ["./*"],
      "@ui/*": ["../../packages/ui/*"],
      "@lib/*": ["../../packages/lib/*"],
      "@hooks/*": ["../../packages/hooks/*"]
    },
    "plugins": [
      {
        "name": "next"
      }
    ]
  },
  "exclude": ["node_modules"],
  "extends": "@total-typescript/tsconfig/bundler/dom/app",
  "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"]
}