Files
pnpm/exec/build-commands/tsconfig.json
Zoltan Kochan 5a9e34f2bc refactor: create config writer package (#9306)
* refactor: create config writer package

* test: fix

* test: fix

* docs: add changeset

* refactor: update config-writer
2025-03-19 15:56:34 +01:00

38 lines
661 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": "../../config/config-writer"
},
{
"path": "../../packages/types"
},
{
"path": "../../pkg-manager/modules-yaml"
},
{
"path": "../../pkg-manager/plugin-commands-installation"
},
{
"path": "../plugin-commands-rebuild"
}
]
}