I used to write "use strict";
as first line in my JavaScript files to enable the strict mode. Now I don't want to add this as boilerplate code to over 200 JavaScript files of my current NodeJs package.
Is there any way to force strict mode for all files of my package without forcing it for the dependencies of my package?
EDIT: This has been marked twice as duplicate of the general question about how to force strict mode in node. This is not a duplicate since this question is much more restrictive: No forcing by adding lines to each file and no forcing while forcing it for dependencies, too.