/ tsconfig.json
tsconfig.json
 1  {
 2    "compilerOptions": {
 3      "target": "ES2022",
 4      "module": "NodeNext",
 5      "moduleResolution": "NodeNext",
 6      "lib": ["ES2022"],
 7      "outDir": "./dist",
 8      "rootDir": "./src",
 9      "strict": true,
10      "esModuleInterop": true,
11      "skipLibCheck": true,
12      "forceConsistentCasingInFileNames": true,
13      "declaration": true,
14      "declarationMap": true,
15      "sourceMap": true
16    },
17    "include": ["src/**/*"],
18    "exclude": ["node_modules", "dist"]
19  }
20