mirror of
https://github.com/LukeHagar/form.git
synced 2025-12-06 04:19:43 +00:00
40 lines
1.0 KiB
JavaScript
40 lines
1.0 KiB
JavaScript
// @ts-check
|
|
|
|
import { esbuildPluginFilePathExtensions } from 'esbuild-plugin-file-path-extensions'
|
|
|
|
/**
|
|
* @param {Object} opts - Options for building configurations.
|
|
* @param {string[]} opts.entry - The entry array.
|
|
* @returns {import('tsup').Options}
|
|
*/
|
|
export function modernConfig(opts) {
|
|
return {
|
|
entry: opts.entry,
|
|
format: ['cjs', 'esm'],
|
|
target: ['chrome91', 'firefox90', 'edge91', 'safari15', 'ios15', 'opera77'],
|
|
outDir: 'build/modern',
|
|
dts: true,
|
|
sourcemap: true,
|
|
clean: true,
|
|
esbuildPlugins: [esbuildPluginFilePathExtensions({ esmExtension: 'js' })],
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @param {Object} opts - Options for building configurations.
|
|
* @param {string[]} opts.entry - The entry array.
|
|
* @returns {import('tsup').Options}
|
|
*/
|
|
export function legacyConfig(opts) {
|
|
return {
|
|
entry: opts.entry,
|
|
format: ['cjs', 'esm'],
|
|
target: ['es2020', 'node16'],
|
|
outDir: 'build/legacy',
|
|
dts: true,
|
|
sourcemap: true,
|
|
clean: true,
|
|
esbuildPlugins: [esbuildPluginFilePathExtensions({ esmExtension: 'js' })],
|
|
}
|
|
}
|