This commit is contained in:
2023-07-11 10:25:49 +03:00
commit e81f6ac8b7
16 changed files with 454 additions and 0 deletions

12
rollup.config.ts Normal file
View File

@@ -0,0 +1,12 @@
import { defineConfig } from 'rollup'
import typescript from '@rollup/plugin-typescript'
export default defineConfig({
input: 'src/index.ts',
output: {
dir: 'dist',
format: 'es'
},
external: ['path', 'axp-ts', 'dotenv', 'express', 'mongoose'],
plugins: [typescript()]
})