Files
pnpm/resolving/npm-resolver/tsconfig.json
Zoltan Kochan 6c480a4375 perf: replace node-fetch with undici (#10537)
Replace node-fetch with native undici for HTTP requests throughout pnpm.

Key changes:
- Replace node-fetch with undici's fetch() and dispatcher system
- Replace @pnpm/network.agent with a new dispatcher module in @pnpm/network.fetch
- Cache dispatchers via LRU cache keyed by connection parameters
- Handle proxies via undici ProxyAgent instead of http/https-proxy-agent
- Convert test mocking from nock to undici MockAgent where applicable
- Add minimatch@9 override to fix ESM incompatibility with brace-expansion
2026-03-29 12:44:00 +02:00

80 lines
1.3 KiB
JSON

{
"extends": "@pnpm/tsconfig",
"compilerOptions": {
"outDir": "lib",
"rootDir": "src"
},
"include": [
"src/**/*.ts",
"../../__typings__/**/*.d.ts"
],
"references": [
{
"path": "../../__utils__/test-fixtures"
},
{
"path": "../../config/pick-registry-for-package"
},
{
"path": "../../config/version-policy"
},
{
"path": "../../core/constants"
},
{
"path": "../../core/core-loggers"
},
{
"path": "../../core/error"
},
{
"path": "../../core/logger"
},
{
"path": "../../core/types"
},
{
"path": "../../crypto/hash"
},
{
"path": "../../fetching/types"
},
{
"path": "../../fs/graceful-fs"
},
{
"path": "../../network/fetch"
},
{
"path": "../../store/cafs"
},
{
"path": "../../store/index"
},
{
"path": "../../testing/mock-agent"
},
{
"path": "../../worker"
},
{
"path": "../../workspace/range-resolver"
},
{
"path": "../../workspace/spec-parser"
},
{
"path": "../jsr-specifier-parser"
},
{
"path": "../registry/pkg-metadata-filter"
},
{
"path": "../registry/types"
},
{
"path": "../resolver-base"
}
]
}