Files
pnpm/packages/cli-utils/tsconfig.json
Yao Ding 548f28df9a feat: print warnings if unknown settings are found in .npmrc (#3074)
* feat: print warnings if unknown settings are found in .npmrc

close #2981

* feat: pnpm takes all cmd config option

* fix: add more sources

* refactor: make some improvements

* fix: don't warn about @scope:registry

Co-authored-by: Zoltan Kochan <z@kochan.io>
2021-01-23 17:22:55 +02:00

38 lines
556 B
JSON

{
"extends": "@pnpm/tsconfig",
"compilerOptions": {
"outDir": "lib",
"rootDir": "src"
},
"include": [
"src/**/*.ts",
"../../typings/**/*.d.ts"
],
"references": [
{
"path": "../cli-meta"
},
{
"path": "../config"
},
{
"path": "../default-reporter"
},
{
"path": "../error"
},
{
"path": "../manifest-utils"
},
{
"path": "../package-is-installable"
},
{
"path": "../read-project-manifest"
},
{
"path": "../types"
}
]
}