Files
pnpm/patching/commands/tsconfig.json
Zoltan Kochan b103439d9a refactor(test): extract shared DEFAULT_OPTS into @pnpm/testing.command-defaults (#11208)
12 command test suites had near-identical ~50-field DEFAULT_OPTS objects
copy-pasted between them. Extract the common fields into a single shared
package so each suite only declares its overrides.
2026-04-05 21:22:24 +02:00

89 lines
1.5 KiB
JSON

{
"extends": "@pnpm/tsconfig",
"compilerOptions": {
"outDir": "lib",
"rootDir": "src"
},
"include": [
"src/**/*.ts",
"../../__typings__/**/*.d.ts"
],
"references": [
{
"path": "../../__utils__/prepare"
},
{
"path": "../../__utils__/test-fixtures"
},
{
"path": "../../cli/utils"
},
{
"path": "../../config/reader"
},
{
"path": "../../config/writer"
},
{
"path": "../../core/constants"
},
{
"path": "../../core/error"
},
{
"path": "../../core/logger"
},
{
"path": "../../core/types"
},
{
"path": "../../crypto/hash"
},
{
"path": "../../fetching/pick-fetcher"
},
{
"path": "../../fs/packlist"
},
{
"path": "../../installing/commands"
},
{
"path": "../../installing/modules-yaml"
},
{
"path": "../../lockfile/fs"
},
{
"path": "../../lockfile/utils"
},
{
"path": "../../pkg-manifest/reader"
},
{
"path": "../../resolving/parse-wanted-dependency"
},
{
"path": "../../store/connection-manager"
},
{
"path": "../../store/path"
},
{
"path": "../../testing/command-defaults"
},
{
"path": "../../workspace/project-manifest-reader"
},
{
"path": "../../workspace/projects-filter"
},
{
"path": "../../workspace/workspace-manifest-reader"
},
{
"path": "../apply-patch"
}
]
}