Files
pnpm/packages/outdated/tsconfig.json
Zoltan Kochan 71aeb9a382 refactor: API of resolvers and fetchers
Instead of creating a separate fetch function for the resolvers
and fetchers, use a single one.

Also, use a single getCredentials function.

close #2652
PR #2655
2020-06-29 17:13:02 +03:00

50 lines
731 B
JSON

{
"extends": "@pnpm/tsconfig",
"compilerOptions": {
"outDir": "lib",
"rootDir": "src"
},
"include": [
"src/**/*.ts",
"../../typings/**/*.d.ts"
],
"references": [
{
"path": "../constants"
},
{
"path": "../default-resolver"
},
{
"path": "../error"
},
{
"path": "../fetch"
},
{
"path": "../lockfile-file"
},
{
"path": "../lockfile-utils"
},
{
"path": "../manifest-utils"
},
{
"path": "../matcher"
},
{
"path": "../modules-yaml"
},
{
"path": "../pick-registry-for-package"
},
{
"path": "../types"
},
{
"path": "../dependency-path"
}
]
}