Skip to content

Commit

Permalink
fix: target es2015 to fix @sanity/cli builds
Browse files Browse the repository at this point in the history
  • Loading branch information
danielroe committed Jul 3, 2020
1 parent 845f62a commit 4059596
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions siroc.config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
import { PackageOptions } from 'siroc'
import esbuild from 'rollup-plugin-esbuild'

const options: PackageOptions = {
rollup: {
plugins: [
esbuild({
target: 'es2015',
}),
],
},
}

export default options

0 comments on commit 4059596

Please sign in to comment.