mirror of
https://github.com/pnpm/pnpm.git
synced 2026-03-28 03:51:40 -04:00
The lockfile now includes musl Linux builds (sourced from unofficial-builds.nodejs.org) alongside the standard glibc variants, so that `node@runtime:` works out of the box on Alpine Linux and other musl-based distributions. `env use` can download node.js artifacts for systems that use musl.
38 lines
641 B
JSON
38 lines
641 B
JSON
{
|
|
"extends": "@pnpm/tsconfig",
|
|
"compilerOptions": {
|
|
"outDir": "lib",
|
|
"rootDir": "src"
|
|
},
|
|
"include": [
|
|
"src/**/*.ts",
|
|
"../../__typings__/**/*.d.ts"
|
|
],
|
|
"references": [
|
|
{
|
|
"path": "../../__utils__/prepare"
|
|
},
|
|
{
|
|
"path": "../../crypto/shasums-file"
|
|
},
|
|
{
|
|
"path": "../../fetching/binary-fetcher"
|
|
},
|
|
{
|
|
"path": "../../fetching/tarball-fetcher"
|
|
},
|
|
{
|
|
"path": "../../network/fetching-types"
|
|
},
|
|
{
|
|
"path": "../../store/cafs-types"
|
|
},
|
|
{
|
|
"path": "../../store/create-cafs-store"
|
|
},
|
|
{
|
|
"path": "../node.resolver"
|
|
}
|
|
]
|
|
}
|