Interface: UserConfig
Defined in: src/config/types.ts:112
Options for tsdown.
Extended by
Properties
alias?
optional alias: Record<string, string>;Defined in: src/config/types.ts:133
attw?
optional attw: WithEnabled<AttwOptions>;Defined in: src/config/types.ts:446
Run arethetypeswrong after bundling. Requires @arethetypeswrong/core to be installed.
Default
falseSee
https://github.com/arethetypeswrong/arethetypeswrong.github.io
banner?
optional banner: ChunkAddon;Defined in: src/config/types.ts:292
bundle?
optional bundle: boolean;Defined in: src/config/types.ts:305
Deprecated
Use unbundle instead.
Default
truecjsDefault?
optional cjsDefault: boolean;Defined in: src/config/types.ts:331
Default
trueclean?
optional clean: boolean | string[];Defined in: src/config/types.ts:286
Clean directories before build.
Default to output directory.
Default
truecopy?
optional copy:
| CopyOptions
| CopyOptionsFn;Defined in: src/config/types.ts:484
Copy files to another directory.
Example
;['src/assets', { from: 'src/assets', to: 'dist/assets' }]customLogger?
optional customLogger: Logger;Defined in: src/config/types.ts:379
Custom logger.
cwd?
optional cwd: string;Defined in: src/config/types.ts:351
The working directory of the config file.
- Defaults to
process.cwd()for root config. - Defaults to the package directory for workspace config.
debug?
optional debug: WithEnabled<DebugOptions>;Defined in: src/config/types.ts:405
[experimental] Enable debug mode.
Both debug mode and Vite DevTools are still under development, and this is for early testers only.
This may slow down the build process significantly.
Default
falsedefine?
optional define: Record<string, string>;Defined in: src/config/types.ts:191
dts?
optional dts: WithEnabled<DtsOptions>;Defined in: src/config/types.ts:423
Enables generation of TypeScript declaration files (.d.ts).
By default, this option is auto-detected based on your project's package.json:
- If the
typesfield is present, or if the mainexportscontains atypesentry, declaration file generation is enabled by default. - Otherwise, declaration file generation is disabled by default.
entry?
optional entry: InputOption;Defined in: src/config/types.ts:117
Defaults to 'src/index.ts' if it exists.
env?
optional env: Record<string, any>;Defined in: src/config/types.ts:190
Compile-time env variables.
Example
{
"DEBUG": true,
"NODE_ENV": "production"
}exports?
optional exports: WithEnabled<ExportsOptions>;Defined in: src/config/types.ts:467
[experimental] Generate package exports for package.json.
This will set the main, module, types, exports fields in package.json to point to the generated files.
external?
optional external: ExternalOption;Defined in: src/config/types.ts:119
failOnWarn?
optional failOnWarn: boolean | CIOption;Defined in: src/config/types.ts:375
If true, fails the build on warnings.
Default
'ci-only'fixedExtension?
optional fixedExtension: boolean;Defined in: src/config/types.ts:314
Use a fixed extension for output files. The extension will always be .cjs or .mjs. Otherwise, it will depend on the package type.
Defaults to true if platform is set to node, false otherwise.
footer?
optional footer: ChunkAddon;Defined in: src/config/types.ts:291
format?
optional format:
| ModuleFormat
| Partial<Record<ModuleFormat, Partial<ResolvedConfig>>>
| ModuleFormat[];Defined in: src/config/types.ts:260
Default
'es'fromVite?
optional fromVite: boolean | "vitest";Defined in: src/config/types.ts:385
Reuse config from Vite or Vitest (experimental)
Default
falseglobalName?
optional globalName: string;Defined in: src/config/types.ts:261
globImport?
optional globImport: boolean;Defined in: src/config/types.ts:459
import.meta.glob support.
See
https://vite.dev/guide/features.html#glob-import
Default
truehash?
optional hash: boolean;Defined in: src/config/types.ts:326
If enabled, appends hash to chunk filenames.
Default
truehooks?
optional hooks:
| Partial<TsdownHooks>
| (hooks) => Awaitable<void>;Defined in: src/config/types.ts:486
ignoreWatch?
optional ignoreWatch: Arrayable<string | RegExp>;Defined in: src/config/types.ts:394
Files or patterns to not watch while in watch mode.
inlineOnly?
optional inlineOnly: Arrayable<string | RegExp>;Defined in: src/config/types.ts:126
Bundle only the dependencies listed here; throw an error if any others are missing.
Note: Be sure to include all required sub-dependencies as well.
inputOptions?
optional inputOptions:
| InputOptions
| (options, format, context) => Awaitable<void | InputOptions | null>;Defined in: src/config/types.ts:249
Use with caution; ensure you understand the implications.
loader?
optional loader: ModuleTypes;Defined in: src/config/types.ts:212
Sets how input files are processed. For example, use 'js' to treat files as JavaScript or 'base64' for images. Lets you import or require files like images or fonts.
Example
{ ".jpg": "asset", ".png": "base64" }logLevel?
optional logLevel: LogLevel;Defined in: src/config/types.ts:370
Log level.
Default
'info'minify?
optional minify:
| boolean
| MinifyOptions
| "dce-only";Defined in: src/config/types.ts:290
Default
falsename?
optional name: string;Defined in: src/config/types.ts:358
The name to show in CLI output. This is useful for monorepos or workspaces. When using workspace mode, this option defaults to the package name from package.json. In non-workspace mode, this option must be set explicitly for the name to show in the CLI output.
nodeProtocol?
optional nodeProtocol: boolean | "strip";Defined in: src/config/types.ts:242
- If
true, addnode:prefix to built-in modules. - If
'strip', strips thenode:protocol prefix from import source. - If
false, does not modify the import source.
Default
falseExample
// With nodeProtocol enabled:
import('fs') // becomes import('node:fs')
// With nodeProtocol set to 'strip':
import('node:fs') // becomes import('fs')
// With nodeProtocol set to false:
import('node:fs') // remains import('node:fs')noExternal?
optional noExternal:
| Arrayable<string | RegExp>
| NoExternalFn;Defined in: src/config/types.ts:120
onSuccess?
optional onSuccess: string | (config, signal) => void | Promise<void>;Defined in: src/config/types.ts:412
You can specify command to be executed after a successful build, specially useful for Watch mode
outDir?
optional outDir: string;Defined in: src/config/types.ts:263
Default
'dist'outExtensions?
optional outExtensions: OutExtensionFactory;Defined in: src/config/types.ts:320
Custom extensions for output files. fixedExtension will be overridden by this option.
outputOptions?
optional outputOptions:
| OutputOptions
| (options, format, context) => Awaitable<void | OutputOptions | null>;Defined in: src/config/types.ts:336
Use with caution; ensure you understand the implications.
platform?
optional platform: "browser" | "node" | "neutral";Defined in: src/config/types.ts:147
Specifies the target runtime platform for the build.
node: Node.js and compatible runtimes (e.g., Deno, Bun). For CJS format, this is always set tonodeand cannot be changed.neutral: A platform-agnostic target with no specific runtime assumptions.browser: Web browsers.
Default
'node'See
https://tsdown.dev/options/platform
plugins?
optional plugins: RolldownPluginOption<any>;Defined in: src/config/types.ts:244
publicDir?
optional publicDir:
| CopyOptions
| CopyOptionsFn;Defined in: src/config/types.ts:472
Deprecated
Alias for copy, will be removed in the future.
publint?
optional publint: WithEnabled<PublintOptions>;Defined in: src/config/types.ts:437
Run publint after bundling. Requires publint to be installed.
Default
falseremoveNodeProtocol?
optional removeNodeProtocol: boolean;Defined in: src/config/types.ts:224
If enabled, strips the node: protocol prefix from import source.
Default
falseDeprecated
Use nodeProtocol: 'strip' instead.
Example
// With removeNodeProtocol enabled:
import('node:fs') // becomes import('fs')report?
optional report: WithEnabled<ReportOptions>;Defined in: src/config/types.ts:452
Enable size reporting after bundling.
Default
trueshims?
optional shims: boolean;Defined in: src/config/types.ts:194
Default
falsesilent?
optional silent: boolean;Defined in: src/config/types.ts:364
Default
falseDeprecated
Use logLevel instead.
skipNodeModulesBundle?
optional skipNodeModulesBundle: boolean;Defined in: src/config/types.ts:131
Skip bundling node_modules.
Default
falsesourcemap?
optional sourcemap: Sourcemap;Defined in: src/config/types.ts:279
Whether to generate source map files.
Note that this option will always be true if you have declarationMap option enabled in your tsconfig.json.
Default
falsetarget?
optional target: string | false | string[];Defined in: src/config/types.ts:178
Specifies the compilation target environment(s).
Determines the JavaScript version or runtime(s) for which the code should be compiled. If not set, defaults to the value of engines.node in your project's package.json. If no engines.node field exists, no syntax transformations are applied.
Accepts a single target (e.g., 'es2020', 'node18'), an array of targets, or false to disable all transformations.
See
https://tsdown.dev/options/target#supported-targets for a list of valid targets and more details.
Examples
// Target a single environment
{ "target": "node18" }// Target multiple environments
{ "target": ["node18", "es2020"] }// Disable all syntax transformations
{ "target": false }treeshake?
optional treeshake: boolean | TreeshakingOptions;Defined in: src/config/types.ts:201
Configure tree shaking options.
See
https://rolldown.rs/options/treeshake for more details.
Default
truetsconfig?
optional tsconfig: string | boolean;Defined in: src/config/types.ts:134
unbundle?
optional unbundle: boolean;Defined in: src/config/types.ts:299
Determines whether unbundle mode is enabled. When set to true, the output files will mirror the input file structure.
Default
falseunused?
optional unused: WithEnabled<UnusedOptions>;Defined in: src/config/types.ts:430
Enable unused dependencies check with unplugin-unused Requires unplugin-unused to be installed.
Default
falsewatch?
optional watch: boolean | Arrayable<string>;Defined in: src/config/types.ts:390
Default
falseworkspace?
optional workspace: true | Workspace | Arrayable<string>;Defined in: src/config/types.ts:494
[experimental] Enable workspace mode. This allows you to build multiple packages in a monorepo.
write?
optional write: boolean;Defined in: src/config/types.ts:269
Whether to write the files to disk. This option is incompatible with watch mode.
Default
true