Files
pnpm/workspace/find-packages/tsconfig.json
Khải 9a44e6ce87 fix(deploy): inherit pnpm from the root manifest (#8991)
* fix(deploy): inherit `pnpm` from the root manifest

* fix: eslint

* refactor: share code

* test: add

* fix: eslint

* fix: remove duplicate dep from package.json
2025-01-26 17:26:16 +01:00

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"
}
]
}