UNPKG

mongoose-geojson-schema

Version:

Schema definitions for GeoJSON types for use with Mongoose JS

15 lines (13 loc) 276 B
import { defineConfig } from 'tsup'; export default defineConfig({ entry: ['src/index.ts'], format: ['cjs'], dts: true, clean: true, sourcemap: true, target: 'es2020', outDir: 'dist', tsconfig: 'tsconfig.json', external: ['mongoose'], noExternal: [], });