/ app / tsconfig.json
tsconfig.json
 1  {
 2    "compilerOptions": {
 3      "lib": ["dom", "dom.iterable", "esnext"],
 4      "allowJs": true,
 5      "skipLibCheck": true,
 6      "strict": true,
 7      "noEmit": true,
 8      "esModuleInterop": true,
 9      "module": "esnext",
10      "moduleResolution": "bundler",
11      "resolveJsonModule": true,
12      "isolatedModules": true,
13      "jsx": "preserve",
14      "incremental": true,
15      "noImplicitAny": false,
16      "noEmitOnError": false,
17      "plugins": [
18        {
19          "name": "next"
20        }
21      ],
22      "paths": {
23        "@/*": ["./src/*"]
24      }
25    },
26    "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts", "src/app/network"],
27    "exclude": ["node_modules","src/app/pages/api"]
28  }