mirror of
https://github.com/pnpm/pnpm.git
synced 2026-07-25 15:07:06 -04:00
* fix: retry filesystem operations on EAGAIN filesystem operations can raise EAGAIN to tell the application to try again later. This is especially often the case under ZFS. fix: move wrapped functions to graceful-fs directly * fix: retry filesystem operations on EAGAIN * fix: retry filesystem operations on EAGAIN * fix: indexed-pkg-importer * test: fix * docs: add changeset --------- Co-authored-by: Zoltan Kochan <z@kochan.io>
23 lines
347 B
JSON
23 lines
347 B
JSON
{
|
|
"extends": "@pnpm/tsconfig",
|
|
"compilerOptions": {
|
|
"outDir": "lib",
|
|
"rootDir": "src"
|
|
},
|
|
"include": [
|
|
"src/**/*.ts",
|
|
"../../__typings__/**/*.d.ts"
|
|
],
|
|
"references": [
|
|
{
|
|
"path": "../../__utils__/prepare"
|
|
},
|
|
{
|
|
"path": "../../packages/logger"
|
|
},
|
|
{
|
|
"path": "../graceful-fs"
|
|
}
|
|
]
|
|
}
|