Skip to content
This documentation is for v14, the docs for v13 are archived.

sortExports

When using the format command, enables sorting the exports property of package.json files.

By default, Syncpack will order properties according to the Node.js documentation for conditional exports.

Default Value

{
"sortExports": [
"types",
"node-addons",
"node",
"browser",
"module",
"import",
"require",
"svelte",
"development",
"production",
"script",
"default"
]
}

Disable

Set to an empty array to disable.

{
"sortExports": []
}