I am using the following compiler options:```json
{
"compilerOptions": {
/* Language and Environment */
"target": "ESNext",
"lib": ["ESNext", "DOM"],
/* Modules */
"module": "commonjs",
"moduleResolution": "node",
/* Emit */
"outDir": "./dist",
/* Interop Constraints */
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
/* Type Checking */
"strict": true,
/* Completeness */
"skipLibCheck": true
}
}