mirror of
https://github.com/pnpm/pnpm.git
synced 2026-03-27 11:31:45 -04:00
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.
41 lines
701 B
JSON
41 lines
701 B
JSON
{
|
|
"extends": "@pnpm/tsconfig",
|
|
"compilerOptions": {
|
|
"outDir": "lib",
|
|
"rootDir": "src"
|
|
},
|
|
"include": [
|
|
"src/**/*.ts",
|
|
"../../../__typings__/**/*.d.ts"
|
|
],
|
|
"references": [
|
|
{
|
|
"path": "../../../core/error"
|
|
},
|
|
{
|
|
"path": "../../../core/types"
|
|
},
|
|
{
|
|
"path": "../../../crypto/shasums-file"
|
|
},
|
|
{
|
|
"path": "../../../fetching/binary-fetcher"
|
|
},
|
|
{
|
|
"path": "../../../fetching/fetcher-base"
|
|
},
|
|
{
|
|
"path": "../../../fetching/types"
|
|
},
|
|
{
|
|
"path": "../../../resolving/npm-resolver"
|
|
},
|
|
{
|
|
"path": "../../../resolving/resolver-base"
|
|
},
|
|
{
|
|
"path": "../../../worker"
|
|
}
|
|
]
|
|
}
|