13 lines
252 B
TypeScript
13 lines
252 B
TypeScript
import { defineConfig } from 'rollup'
|
|
import typescript from '@rollup/plugin-typescript'
|
|
|
|
export default defineConfig({
|
|
input: 'src/index.ts',
|
|
output: {
|
|
dir: 'dist',
|
|
format: 'es'
|
|
},
|
|
external: ['axp-ts', 'mongoose'],
|
|
plugins: [typescript()]
|
|
})
|