@rollup/plugin-node-resolve 15.2.0 → 15.2.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rollup/plugin-node-resolve",
3
- "version": "15.2.0",
3
+ "version": "15.2.1",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
package/types/index.d.ts CHANGED
@@ -96,6 +96,14 @@ export interface RollupNodeResolveOptions {
96
96
  * @default process.cwd()
97
97
  */
98
98
  rootDir?: string;
99
+
100
+ /**
101
+ * Allow folder mappings in package exports (trailing /)
102
+ * This was deprecated in Node 14 and removed with Node 17, see DEP0148.
103
+ * So this option might be changed to default to `false` in a future release.
104
+ * @default true
105
+ */
106
+ allowExportsFolderMapping?: boolean;
99
107
  }
100
108
 
101
109
  /**