Skip to content

Commit

Permalink
fix: sub module typing
Browse files Browse the repository at this point in the history
  • Loading branch information
jigsawye committed Oct 12, 2020
1 parent 2c15827 commit a0c4005
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 4 deletions.
4 changes: 3 additions & 1 deletion formik/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,7 @@
"private": true,
"name": "tailor-ui/formik",
"main": "../lib/formik/index.cjs.js",
"module": "../lib/formik/index.js"
"module": "../lib/formik/index.js",
"sideEffects": false,
"typings": "lib/formik/index.d.ts"
}
4 changes: 3 additions & 1 deletion lab/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,7 @@
"private": true,
"name": "tailor-ui/lab",
"main": "../lib/lab/index.cjs.js",
"module": "../lib/lab/index.js"
"module": "../lib/lab/index.js",
"sideEffects": false,
"typings": "lib/lab/index.d.ts"
}
4 changes: 3 additions & 1 deletion theme/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,7 @@
"private": true,
"name": "tailor-ui/theme",
"main": "../lib/theme/index.cjs.js",
"module": "../lib/theme/index.js"
"module": "../lib/theme/index.js",
"sideEffects": false,
"typings": "lib/theme/index.d.ts"
}
4 changes: 3 additions & 1 deletion utils/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,7 @@
"private": true,
"name": "tailor-ui/utils",
"main": "../lib/utils/index.cjs.js",
"module": "../lib/utils/index.js"
"module": "../lib/utils/index.js",
"sideEffects": false,
"typings": "lib/utils/index.d.ts"
}

0 comments on commit a0c4005

Please sign in to comment.