Files
pnpm/packages/error/tsconfig.json
Zoltan Kochan 7ebe2a0532 fix: throw a meaningful error message on broken lockfile (#4387)
When `node-linker` is set to `hoisted`, a meaningful error message
should be thrown if the lockfile is broken and `pnpm install` is
executed.
2022-02-24 06:30:41 +02:00

17 lines
237 B
JSON

{
"extends": "@pnpm/tsconfig",
"compilerOptions": {
"outDir": "lib",
"rootDir": "src"
},
"include": [
"src/**/*.ts",
"../../typings/**/*.d.ts"
],
"references": [
{
"path": "../constants"
}
]
}