Files
pnpm/cli/utils/tsconfig.json
Zoltan Kochan 8acf2708c9 refactor: rename deps-resolver and env-installer packages (#11013)
Rename @pnpm/installing.resolve-dependencies to @pnpm/installing.deps-resolver
for consistency with the <domain>.<leaf> naming convention.
2026-03-18 21:52:01 +01:00

53 lines
884 B
JSON

{
"extends": "@pnpm/tsconfig",
"compilerOptions": {
"outDir": "lib",
"rootDir": "src"
},
"include": [
"src/**/*.ts",
"../../__typings__/**/*.d.ts"
],
"references": [
{
"path": "../../__utils__/prepare"
},
{
"path": "../../config/package-is-installable"
},
{
"path": "../../config/reader"
},
{
"path": "../../core/error"
},
{
"path": "../../core/logger"
},
{
"path": "../../core/types"
},
{
"path": "../../hooks/pnpmfile"
},
{
"path": "../../installing/env-installer"
},
{
"path": "../../pkg-manifest/utils"
},
{
"path": "../../store/connection-manager"
},
{
"path": "../../workspace/project-manifest-reader"
},
{
"path": "../default-reporter"
},
{
"path": "../meta"
}
]
}