All Downloads are FREE. Search and download functionalities are using the official Maven repository.

package.rollup.config.js Maven / Gradle / Ivy

There is a newer version: 1.0.5
Show newest version
import {nodeResolve} from "@rollup/plugin-node-resolve"

export default {
  input: "./src/parser.js",
  output: [{
    format: "cjs",
    file: "./dist/index.cjs"
  }, {
    format: "es",
    file: "./dist/index.js"
  }],
  external(id) { return !/^[\.\/]/.test(id) },
  plugins: [
    nodeResolve()
  ]
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy