1{ 2 "compilerOptions": { 3 "target": "es2018", 4 "lib": ["es2021", "esnext.asynciterable"], 5 "module": "commonjs", 6 "sourceMap": true, 7 "inlineSources": true, 8 "outDir": "./build", 9 "rootDir": "./src", 10 "types": ["node"], 11 "strict": true, 12 "noImplicitAny": false, 13 "noUnusedLocals": true, 14 "noImplicitReturns": true, 15 "noFallthroughCasesInSwitch": true, 16 "esModuleInterop": true, 17 "resolveJsonModule": true, 18 "skipLibCheck": true, 19 "skipDefaultLibCheck": true, 20 "incremental": true, 21 "useUnknownInCatchVariables": false, 22 "tsBuildInfoFile": "./cache/.tsbuildinfo" 23 } 24} 25