mirror of
https://github.com/labring/FastGPT.git
synced 2025-12-26 04:24:54 +00:00
17 lines
250 B
TypeScript
17 lines
250 B
TypeScript
import { defineConfig } from 'tsdown';
|
|
|
|
export default defineConfig({
|
|
entry: 'src/index.ts',
|
|
format: 'esm',
|
|
dts: {
|
|
enabled: true,
|
|
sourcemap: false
|
|
},
|
|
outExtensions() {
|
|
return {
|
|
dts: '.d.ts',
|
|
js: '.js'
|
|
};
|
|
}
|
|
});
|