Files
pnpm/packages/audit/tsconfig.json
Simon Schmid af79b6184c fix(audit): add authentication to pnpm-audit (#5053)
Adds authentication to pnpm-audit for private registries

close #5038
2022-07-18 17:09:25 +03:00

41 lines
586 B
JSON

{
"extends": "@pnpm/tsconfig",
"compilerOptions": {
"outDir": "lib",
"rootDir": "src"
},
"include": [
"src/**/*.ts",
"../../typings/**/*.d.ts"
],
"references": [
{
"path": "../constants"
},
{
"path": "../error"
},
{
"path": "../fetch"
},
{
"path": "../fetching-types"
},
{
"path": "../lockfile-file"
},
{
"path": "../lockfile-types"
},
{
"path": "../lockfile-utils"
},
{
"path": "../lockfile-walker"
},
{
"path": "../types"
}
]
}