vtils

Home > types > PackageJson > Exports

PackageJson.Exports type

Entry points of a module, optionally with conditions and subpath exports.

Signature:

export type Exports =
    	| string
    	| string[]
    	| {[key in ExportCondition]: Exports}
    	| {[key: string]: Exports};

References: ExportCondition, Exports