fix(node/types): Add ignoreDynamic to typescript types (#4832)

This commit is contained in:
Andrew Bradley 2022-05-28 15:23:56 -04:00 committed by GitHub
parent 473ea158c6
commit e30449b097
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -959,6 +959,10 @@ export interface BaseModuleConfig {
* Defaults to `false`.
*/
noInterop?: boolean;
/**
* If set to true, dynamic imports will be preserved.
*/
ignoreDynamic?: boolean;
}
export interface Es6Config extends BaseModuleConfig {