Skip to content

Commit d455fff

Browse files
authored
fix(node-resolve): add ignoreSideEffectsForRoot to exported interface (#1841)
* fix(node-resolve): add `ignoreSideEffectsForRoot` to exported interface * test: add type tests
1 parent 8b5fb98 commit d455fff

File tree

3 files changed

+12
-1
lines changed

3 files changed

+12
-1
lines changed

packages/node-resolve/README.md

+3
Original file line numberDiff line numberDiff line change
@@ -181,6 +181,9 @@ rootDir: path.join(process.cwd(), '..')
181181

182182
### `ignoreSideEffectsForRoot`
183183

184+
Type: `Boolean`<br>
185+
Default: `false`
186+
184187
If you use the `sideEffects` property in the package.json, by default this is respected for files in the root package. Set to `true` to ignore the `sideEffects` configuration for the root package.
185188

186189
### `allowExportsFolderMapping`

packages/node-resolve/test/types.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@ const config = {
2121
mainFields: ['untranspiled', 'module', 'main'],
2222
modulesOnly: true,
2323
resolveOnly: ['some_module', /^@some_scope\/.*$/],
24-
rootDir: 'root'
24+
rootDir: 'root',
25+
ignoreSideEffectsForRoot: false
2526
})
2627
]
2728
};

packages/node-resolve/types/index.d.ts

+7
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,13 @@ export interface RollupNodeResolveOptions {
9999
*/
100100
rootDir?: string;
101101

102+
/**
103+
* If you use the `sideEffects` property in the package.json, by default this is respected for files in the root package. Set to `true` to ignore the `sideEffects` configuration for the root package.
104+
*
105+
* @default false
106+
*/
107+
ignoreSideEffectsForRoot?: boolean;
108+
102109
/**
103110
* Allow folder mappings in package exports (trailing /)
104111
* This was deprecated in Node 14 and removed with Node 17, see DEP0148.

0 commit comments

Comments
 (0)