Files
pnpm/packages/plugin-commands-env/tsconfig.json
Zoltan Kochan af8b5716e4 feat: a command for installing Node.js (#3620)
The following command will install Node.js (inspired by [poetry](https://python-poetry.org/docs/managing-environments/)):

```
pnpm env use --global 16.5.0
```
2021-07-30 14:21:19 +03:00

35 lines
505 B
JSON

{
"extends": "@pnpm/tsconfig",
"compilerOptions": {
"outDir": "lib",
"rootDir": "src"
},
"include": [
"src/**/*.ts",
"../../typings/**/*.d.ts"
],
"references": [
{
"path": "../../privatePackages/prepare"
},
{
"path": "../cli-utils"
},
{
"path": "../config"
},
{
"path": "../error"
},
{
"path": "../fetch"
},
{
"path": "../package-store"
},
{
"path": "../tarball-fetcher"
}
]
}