Files
pnpm/engine/runtime/node-resolver/tsconfig.json
Zoltan Kochan 6586604b19 refactor: remove hardcoded runtime bin workaround from linker (#11058)
Since v11 uses a new store version, all runtime packages (node, deno, bun)
have a generated package.json with bin fields. The hardcoded switch block
in the linker is no longer needed.

Also moves getNodeBinsForCurrentOS, getDenoBinLocationForCurrentOS, and
getBunBinLocationForCurrentOS out of @pnpm/constants into their respective
resolver packages, since each is only used in one place.
2026-03-22 00:21:55 +01:00

35 lines
577 B
JSON

{
"extends": "@pnpm/tsconfig",
"compilerOptions": {
"outDir": "lib",
"rootDir": "src"
},
"include": [
"src/**/*.ts",
"../../../__typings__/**/*.d.ts"
],
"references": [
{
"path": "../../../config/reader"
},
{
"path": "../../../core/error"
},
{
"path": "../../../core/types"
},
{
"path": "../../../crypto/shasums-file"
},
{
"path": "../../../fetching/types"
},
{
"path": "../../../network/fetch"
},
{
"path": "../../../resolving/resolver-base"
}
]
}