UNPKG

node-libcurl

Version:

The fastest http(s) client (and much more) for Node.js - Node.js bindings for libcurl

40 lines (39 loc) 1.03 kB
{ "compilerOptions": { "baseUrl": ".", "paths": { "*": ["types/external/*"] }, "incremental": true, "module": "commonjs", // Node.js >= 19 supports almost 100% of ES2018 (https://node.green/#ES2018) "target": "es2018", "lib": [ "es2018", // error Cannot find name 'AsyncIterable'. "esnext.asynciterable" ], "esModuleInterop": true, "declaration": true, "declarationMap": true, "rootDir": "lib", "outDir": "dist", "sourceMap": true, "strict": true, "allowSyntheticDefaultImports": true, "typeRoots": ["node_modules/@types", "types/external"], "noUnusedLocals": true, "importHelpers": true }, "include": ["lib/**/*"], "exclude": ["node_modules"], // @TODO Remove those when done // "files": ["types/custom/index.d.ts"] "typedocOptions": { // "mode": "modules", "mode": "library", "out": "docs", "excludeNotExported": true, "excludePrivate": true, "readme": "none", "gaID": "UA-11343647-11" } }