Replies: 1 comment 1 reply
-
|
Did you ever get an answer on this, I also don't have any idea why it's doing this |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Recently I've noticed that when generating NestJS lib, it adds this lib path twice in nx.json config.
So my questions are:
From what I see the idea of this "duplication" is to disable
buildstep of typescript plugin for NestJS libs.But other NestJS libs are still working without having entries there, so why have it?
{ "plugin": "@nx/js/typescript", "options": { "typecheck": { "targetName": "typecheck" }, "build": { "targetName": "build", "configName": "tsconfig.lib.json", "buildDepsName": "build-deps", "watchDepsName": "watch-deps" } }, "exclude": ["libs-nest/lib-13/*", "libs-nest/lib-14/*"] }, { "plugin": "@nx/js/typescript", "include": ["libs-nest/lib-13/*", "libs-nest/lib-14/*"], "options": { "typecheck": { "targetName": "typecheck" } } }Beta Was this translation helpful? Give feedback.
All reactions