Files
tools/vue/writekit/tsdown.config.ts
T
robonen e73e8d2cdd
Publish to NPM / Check version changes and publish (push) Failing after 10m44s
chore: update dependencies and configurations across multiple packages
2026-06-18 02:02:58 +07:00

33 lines
907 B
TypeScript

import { defineConfig } from 'tsdown';
import { sharedConfig } from '@robonen/tsdown';
import Vue from 'unplugin-vue/rolldown';
export default defineConfig({
...sharedConfig,
tsconfig: './tsconfig.src.json',
entry: ['src/index.ts', 'src/*/index.ts'],
plugins: [Vue({ isProduction: true })],
dts: { vue: true },
deps: {
neverBundle: ['vue'],
// `@robonen/*` (incl. `@robonen/primitives`) stay external — no more
// inlining the whole component lib (and its transitive `@floating-ui/*`)
// into writekit's bundle. Only stateless `@vue/shared` is inlined.
alwaysBundle: ['@vue/shared'],
},
inputOptions: {
resolve: {
alias: {
'@vue/shared': '@vue/shared/dist/shared.esm-bundler.js',
},
},
},
outputOptions: {
...sharedConfig.outputOptions,
chunkFileNames: 'shared/[name]-[hash].js',
},
define: {
__DEV__: 'false',
},
});