Skip to content

Commit

Permalink
Merge pull request #122 from gnosis/es6-modules
Browse files Browse the repository at this point in the history
compile to es6 modules for broader compat
  • Loading branch information
jfschwarz authored May 9, 2023
2 parents 25bf6bf + a0cec42 commit 88b96ec
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
{
"name": "@gnosis.pm/zodiac",
"version": "3.3.1",
"version": "3.3.2",
"description": "Zodiac is a composable design philosophy and collection of standards for building DAO ecosystem tooling.",
"author": "Auryn Macmillan <[email protected]>",
"license": "LGPL-3.0+",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/cjs/index.d.ts",
"exports": {
".": {
"require": "./dist/cjs/index.js",
Expand Down
4 changes: 2 additions & 2 deletions tsconfig.esm.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"extends": "./tsconfig",
"compilerOptions": {
"target": "es2020",
"target": "es2016",
"outDir": "dist/esm",
"module": "es2020"
"module": "es6"
},
"include": ["sdk/**/*.ts"]
}

0 comments on commit 88b96ec

Please sign in to comment.