Thanks for the link. I have read through this and tried the steps in the article. The issue is that you need a non-corrupt WiredTiger.wt file to use the wt commands in that article.
How we resolved it is a bit of a hack, but here is what we did. We created a new and empty MongoDB 4.0.5 instance. Then, we created a new collection in this new instance for each of the collections in the old instance. The collection names do not have to be the same, but the collection-.wt filenames must be static on the new instance. These collection-.wt file names cannot be predetermined and cannot change. We had about 42 collections in our old instance, therefore, we created 42 new collections on the 4.0.5 instance. Next, we inserted an arbitrary string (document) into these new collections. They cannot be empty collections because the repair step will not work. We then copied over the old collection*-.wt files while again keeping the new collection file names. Next, we started the MongoDB 4.0.5 instance with the --repair option. This added the metadata to the WiredTiger.wt file. The challenge is mapping the collection names from the old instance over to the new instance, but we at least have the data. Lastly, we ran a script to recreate the indexes on the collections.