UNPKG

json-object-mapper

Version:

A TypeScript library to serialize and deserialize JSON objects in a fast and non-recursive way

17 lines (16 loc) 332 B
import typescript from 'rollup-plugin-typescript'; export default { entry: './src/main/index.ts', dest: './dist/ObjectMapper.js', format: 'cjs', sourceMap: true, external: [ 'reflect-metadata' ], globals: { "reflect-metadata": "Reflect" }, plugins: [ typescript() ] }