mirror of
https://github.com/pnpm/pnpm.git
synced 2026-03-27 19:41:44 -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.
35 lines
577 B
JSON
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"
|
|
}
|
|
]
|
|
}
|