mirror of
https://github.com/pnpm/pnpm.git
synced 2026-03-29 20:41:47 -04:00
When a new package is being added to the store, its manifest is streamed in the memory. So instead of reading the manifest from the filesystem, we can parse the stream from the memory. PR #2525
23 lines
315 B
JSON
23 lines
315 B
JSON
{
|
|
"extends": "@pnpm/tsconfig",
|
|
"compilerOptions": {
|
|
"outDir": "lib",
|
|
"rootDir": "src"
|
|
},
|
|
"include": [
|
|
"src/**/*.ts",
|
|
"../../typings/**/*.d.ts"
|
|
],
|
|
"references": [
|
|
{
|
|
"path": "../fetcher-base"
|
|
},
|
|
{
|
|
"path": "../cafs"
|
|
},
|
|
{
|
|
"path": "../types"
|
|
}
|
|
]
|
|
}
|