e6a3e5c3ea
* move core into repo, apps into apps folder, update tests * Update scripts for build:core * improve scripts * remove noise from www * Update .gitignore * Fix focus bug * add ci test script * Update main.yml
12 lines
284 B
TypeScript
12 lines
284 B
TypeScript
import { BuildOptions } from 'esbuild'
|
|
import path from 'path'
|
|
|
|
const config: BuildOptions = {
|
|
platform: 'browser',
|
|
entryPoints: [path.resolve('src/renderer/index.tsx')],
|
|
bundle: true,
|
|
target: 'chrome94', // electron version target
|
|
sourcemap: true,
|
|
}
|
|
|
|
export default config
|