File: rollup.config.js

package info (click to toggle)
node-locate-character 2.0.5%2Brepack-5
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid, trixie
  • size: 168 kB
  • sloc: javascript: 69; makefile: 2
file content (9 lines) | stat: -rw-r--r-- 311 bytes parent folder | download
1
2
3
4
5
6
7
8
9
const typescript = require("@rollup/plugin-typescript");
module.exports = {
    plugins: [typescript()],
	input: 'src/index.ts',
	output: [
		{ name: 'locateCharacter', file: 'dist/locate-character.es.js', format: 'es' },
		{ name: 'locateCharacter', file: 'dist/locate-character.umd.js', format: 'umd' }
	]
};