We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 92325cf commit 1062bc7Copy full SHA for 1062bc7
1 file changed
packages/core/errors/messages.ts
@@ -90,15 +90,15 @@ Scope [${scope}]
90
`;
91
92
export const UNKNOWN_EXPORT_MESSAGE = (
93
- token: string,
+ token: string = 'item',
94
module: string,
95
) => {
96
return `
97
Nest cannot export a provider/module that is not a part of the currently processed module (${module}).
98
-Please verify whether the exported "${token}" is available in this particular context.
+Please verify whether the exported ${token} is available in this particular context.
99
100
Possible Solutions:
101
-- Is "${token}" part of the relevant providers/imports within ${module}?
+- Is ${token} part of the relevant providers/imports within ${module}?
102
103
};
104
0 commit comments