@vercel/node 5.3.18 → 5.3.19
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +3 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -69658,7 +69658,9 @@ function fixConfig(config, nodeVersionMajor = 12) {
|
|
|
69658
69658
|
config.compilerOptions.esModuleInterop = true;
|
|
69659
69659
|
}
|
|
69660
69660
|
if (config.compilerOptions.module === void 0) {
|
|
69661
|
-
config.compilerOptions.module = "
|
|
69661
|
+
config.compilerOptions.module = "NodeNext";
|
|
69662
|
+
config.compilerOptions.moduleResolution = "NodeNext";
|
|
69663
|
+
config.compilerOptions.strict = false;
|
|
69662
69664
|
}
|
|
69663
69665
|
return config;
|
|
69664
69666
|
}
|