Files
pnpm/registry-access/commands/tsconfig.json
Alessio Attilio b738043ab1 feat: implement native pnpm ping command (#11258)
Add native `pnpm ping` command to test connectivity to registries.

---------

Co-authored-by: Zoltan Kochan <z@kochan.io>
2026-04-14 21:21:55 +00:00

50 lines
838 B
JSON

{
"extends": "@pnpm/tsconfig",
"compilerOptions": {
"outDir": "lib",
"rootDir": "src"
},
"include": [
"src/**/*.ts",
"../../__typings__/**/*.d.ts"
],
"references": [
{
"path": "../../__utils__/prepare"
},
{
"path": "../../cli/utils"
},
{
"path": "../../config/pick-registry-for-package"
},
{
"path": "../../config/reader"
},
{
"path": "../../core/error"
},
{
"path": "../../core/types"
},
{
"path": "../../network/auth-header"
},
{
"path": "../../network/fetch"
},
{
"path": "../../releasing/commands"
},
{
"path": "../../resolving/registry/types"
},
{
"path": "../../testing/command-defaults"
},
{
"path": "../../testing/mock-agent"
}
]
}