@rollup/plugin-node-resolve 15.1.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/README.md +44 -0
- package/dist/cjs/index.js +340 -265
- package/dist/es/index.js +340 -265
- package/package.json +1 -1
- package/types/index.d.ts +8 -0
package/package.json
CHANGED
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
|
/**
|