tsconfig.json
1 { 2 "compilerOptions": { 3 "target": "ES2022", /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */ 4 "module": "commonjs", /* Specify what module code is generated. */ 5 "esModuleInterop": true, /* Emit additional JavaScript to ease support for importing CommonJS modules. This enables 'allowSyntheticDefaultImports' for type compatibility. */ 6 "forceConsistentCasingInFileNames": true, /* Ensure that casing is correct in imports. */ 7 "strict": true, /* Enable all strict type-checking options. */ 8 "skipLibCheck": true /* Skip type checking all .d.ts files. */ 9 } 10 }