16 lines
308 B
JavaScript
16 lines
308 B
JavaScript
import { defineConfig } from 'tsdown';
|
|
|
|
export default defineConfig({
|
|
dts: false,
|
|
entry: {
|
|
app: './index.js',
|
|
'util/*': './util/*',
|
|
'module/*': './module/*.js'
|
|
},
|
|
outDir: './bin/api_js/',
|
|
fixedExtension: false,
|
|
format: 'cjs',
|
|
platform: 'node',
|
|
target: 'node14',
|
|
minify: true
|
|
}); |