{
  "compilerOptions": {
    "target": "ES2021", // Or a newer version like ES2022 if needed
    "module": "commonjs",
    "outDir": "./dist",
    "rootDir": "./src",
    "esModuleInterop": true,
    "strict": true,
    "moduleResolution": "node",
    "skipLibCheck": true // This can help to skip type checking for problematic node_modules packages
  },
  "include": ["src/**/*"]
}