tauri-plugin-context-menu 0.8.2

Handle native Context Menu in Tauri
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import esbuild from 'esbuild';

esbuild.build({
  entryPoints: ['./index.ts'],
  outdir: './dist',
  bundle: true,
  format: 'esm',
  splitting: true,
  chunkNames: '[name]',
  minify: true,
  loader: {
    '.ts': 'ts'
  },
  tsconfig: './tsconfig.json',
  platform: 'node',
  sourcemap: true
}).catch(() => process.exit(1));