/ tsconfig.json
tsconfig.json
 1  {
 2    "compilerOptions": {
 3      "target": "ES2017",
 4      "lib": [
 5        "dom",
 6        "dom.iterable",
 7        "esnext"
 8      ],
 9      "allowJs": true,
10      "skipLibCheck": true,
11      "strict": true,
12      "noEmit": true,
13      "esModuleInterop": true,
14      "module": "esnext",
15      "moduleResolution": "bundler",
16      "resolveJsonModule": true,
17      "isolatedModules": true,
18      "jsx": "react-jsx",
19      "incremental": true,
20      "plugins": [
21        {
22          "name": "next"
23        }
24      ],
25      "paths": {
26        "@/*": [
27          "./src/*"
28        ]
29      }
30    },
31    "include": [
32      "next-env.d.ts",
33      "**/*.ts",
34      "**/*.tsx",
35      ".next/types/**/*.ts",
36      "**/*.mts",
37      ".next/dev/types/**/*.ts"
38    ],
39    "exclude": [
40      "node_modules",
41      "src/cli",
42      "data"
43    ]
44  }