mirror of
https://github.com/pnpm/pnpm.git
synced 2026-07-25 23:17:08 -04:00
* fix(deploy): inherit `pnpm` from the root manifest * fix: eslint * refactor: share code * test: add * fix: eslint * fix: remove duplicate dep from package.json
32 lines
501 B
JSON
32 lines
501 B
JSON
{
|
|
"extends": "@pnpm/tsconfig",
|
|
"compilerOptions": {
|
|
"outDir": "lib",
|
|
"rootDir": "src"
|
|
},
|
|
"include": [
|
|
"src/**/*.ts",
|
|
"../../__typings__/**/*.d.ts"
|
|
],
|
|
"references": [
|
|
{
|
|
"path": "../../cli/cli-utils"
|
|
},
|
|
{
|
|
"path": "../../fs/find-packages"
|
|
},
|
|
{
|
|
"path": "../../packages/constants"
|
|
},
|
|
{
|
|
"path": "../../packages/logger"
|
|
},
|
|
{
|
|
"path": "../../packages/types"
|
|
},
|
|
{
|
|
"path": "../read-manifest"
|
|
}
|
|
]
|
|
}
|