tsconfig.json
{
"compilerOptions": {
"strict": true,
"target": "ES2021",
"module": "CommonJS",
"moduleResolution": "Node",
"rootDir": "src",
"outDir": "dist",
"esModuleInterop": true,
"skipLibCheck": true,
"types": ["node"],
"lib": ["ES2021"]
},
"include": ["src"]
}