Files
pnpm/exec/build-modules/tsconfig.json
modten 36d1448c48 feat: add workspace-concurrency cli option for pack and publish command (#9493)
* refactor: set the default `workspaceConcurrency` to `Math.min(os.availableParallelism(), 4)`

* feat(plugin-commands-publishing): add `workspace-concurrency` cli option for pack and publish

* feat(recursive): add support for `recursive pack`

* feat: get default workspaceConcurrency from config package

* test(config): mock cpus to support Node.js 18
2025-05-09 10:30:21 +02:00

56 lines
950 B
JSON

{
"extends": "@pnpm/tsconfig",
"compilerOptions": {
"outDir": "lib",
"rootDir": "src"
},
"include": [
"src/**/*.ts",
"../../__typings__/**/*.d.ts"
],
"references": [
{
"path": "../../config/config"
},
{
"path": "../../deps/graph-sequencer"
},
{
"path": "../../fs/hard-link-dir"
},
{
"path": "../../packages/calc-dep-state"
},
{
"path": "../../packages/core-loggers"
},
{
"path": "../../packages/logger"
},
{
"path": "../../packages/types"
},
{
"path": "../../patching/apply-patch"
},
{
"path": "../../patching/types"
},
{
"path": "../../pkg-manager/link-bins"
},
{
"path": "../../pkg-manifest/read-package-json"
},
{
"path": "../../store/store-controller-types"
},
{
"path": "../../worker"
},
{
"path": "../lifecycle"
}
]
}