UNPKG

@tomjs/create-app

Version:

Create a node/web/electron/vscode project based on tomjs

14 lines (12 loc) 277 B
import { defineConfig } from 'tsdown'; export default defineConfig((options) => { return { entry: ['src/index.ts'], format: ['cjs'], target: 'node14', external: ['vscode'], clean: true, sourcemap: !!options.watch, fixedExtension: false, }; });