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