Skip to content

Latest commit

 

History

History
88 lines (67 loc) · 1.71 KB

File metadata and controls

88 lines (67 loc) · 1.71 KB

require-exports

💼 This rule is enabled in the following configs: ✔️ legacy-recommended, ✅ recommended, 📦 recommended-publishable.

This rule checks for the existence of the "exports" property in a package.json, and reports a violation if it doesn't exist.

Example of incorrect code for this rule:

{
	"name": "thee-silver-mt-zion",
	"version": "13.0.0"
}

Example of correct code for this rule:

{
	"name": "thee-silver-mt-zion",
	"version": "13.0.0",
	"exports": {
		".": "./index.js"
	}
}

Options

Name Description Type Default
ignorePrivate Determines if this rule should be enforced when the package's private property is true. Boolean true
{
	"package-json/require-exports": [
		"error",
		{
			"ignorePrivate": false
		}
	]
}

Example of incorrect code for this rule with the { "ignorePrivate": false } option:

{
	"private": true
}

Example of correct code for this rule with the { "ignorePrivate": false } option:

{
	"private": true,
	"exports": {
		".": "./index.js"
	}
}

Example of incorrect code for this rule with the { "ignorePrivate": true } option:

{
	"private": false
}
{}

Example of correct code for this rule with the { "ignorePrivate": true } option:

{
	"private": true
}