mirror of
https://github.com/pnpm/pnpm.git
synced 2026-03-30 13:02:03 -04:00
* feat: add ignored-builds command * test: ignored-builds * test: ignored-builds * fix: document the new command * refactor: update text * feat: add approve-builds command * feat: rebuild approved packages * fix: ignored builds * feat: add final approval prompt * test: approve builds * refactor: approve-builds
38 lines
675 B
JSON
38 lines
675 B
JSON
{
|
|
"extends": "@pnpm/tsconfig",
|
|
"compilerOptions": {
|
|
"outDir": "lib",
|
|
"rootDir": "src"
|
|
},
|
|
"include": [
|
|
"src/**/*.ts",
|
|
"../../__typings__/**/*.d.ts"
|
|
],
|
|
"references": [
|
|
{
|
|
"path": "../../__utils__/prepare"
|
|
},
|
|
{
|
|
"path": "../../__utils__/prepare-temp-dir"
|
|
},
|
|
{
|
|
"path": "../../config/config"
|
|
},
|
|
{
|
|
"path": "../../packages/types"
|
|
},
|
|
{
|
|
"path": "../../pkg-manager/modules-yaml"
|
|
},
|
|
{
|
|
"path": "../../pkg-manager/plugin-commands-installation"
|
|
},
|
|
{
|
|
"path": "../../pkg-manifest/read-project-manifest"
|
|
},
|
|
{
|
|
"path": "../plugin-commands-rebuild"
|
|
}
|
|
]
|
|
}
|