We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3325b9e commit 9cb7908Copy full SHA for 9cb7908
tools/mcmanifest.js
@@ -1747,7 +1747,7 @@ export class TSConfigFile extends FILE {
1747
const modules = MODDABLE + tool.slash + "modules" + tool.slash;
1748
const build = MODDABLE + tool.slash + "build" + tool.slash;
1749
const node = tool.slash + "node_modules" + tool.slash;
1750
- return sources.filter(item => !item.source.startsWith(modules) && !item.source.startsWith(build) && !item.source.includes(node));
+ return sources.filter(item => !item.source.startsWith(modules) && !item.source.startsWith(build) && !item.source.includes(node) && !item.source.endsWith(".json"));
1751
}
1752
1753
0 commit comments