Files
pnpm/pkg-manager/real-hoist/tsconfig.json
Nikita Skovoroda 2ae5eaf95e fix: ~7% smaller bundle size by not packing unneeded yarnpkg/nm subdeps (#8809)
* chore: use node16 ts moduleResolution in real-hoist

* fix: 7% smaller bundle size
2024-11-26 13:16:17 +01:00

34 lines
573 B
JSON

{
"extends": "@pnpm/tsconfig",
"compilerOptions": {
"moduleResolution": "node16",
"module": "Node16",
"outDir": "lib",
"rootDir": "src"
},
"include": [
"src/**/*.ts",
"../../__typings__/**/*.d.ts"
],
"references": [
{
"path": "../../__utils__/test-fixtures"
},
{
"path": "../../lockfile/fs"
},
{
"path": "../../lockfile/utils"
},
{
"path": "../../packages/dependency-path"
},
{
"path": "../../packages/error"
},
{
"path": "../../packages/types"
}
]
}