Files
pnpm/packages/package-requester/tsconfig.json
Zoltan Kochan 8d1dfa89c6 fix: verify the name and version of the package in the store (#3224)
* fix: verify the name and version of the package in the store

ref #3202

* fix: autofix broken lockfile

* docs: add changesets
2021-03-08 21:24:37 +02:00

44 lines
636 B
JSON

{
"extends": "@pnpm/tsconfig",
"compilerOptions": {
"outDir": "lib",
"rootDir": "src"
},
"include": [
"src/**/*.ts",
"../../typings/**/*.d.ts"
],
"references": [
{
"path": "../cafs"
},
{
"path": "../client"
},
{
"path": "../core-loggers"
},
{
"path": "../dependency-path"
},
{
"path": "../error"
},
{
"path": "../fetcher-base"
},
{
"path": "../read-package-json"
},
{
"path": "../resolver-base"
},
{
"path": "../store-controller-types"
},
{
"path": "../types"
}
]
}