mirror of
https://github.com/enso-org/enso.git
synced 2024-12-25 19:31:36 +03:00
13 lines
280 B
TypeScript
13 lines
280 B
TypeScript
import { defineConfig } from 'tsup'
|
|
|
|
export default defineConfig({
|
|
outExtension({ format }) {
|
|
return {
|
|
js: `.js`,
|
|
}
|
|
},
|
|
// FIXME Does not work: https://github.com/egoist/tsup/issues/819
|
|
bundle: true,
|
|
skipNodeModulesBundle: false,
|
|
})
|