Skip to content

Commit

Permalink
fix: add main and types properties to package.json as fallbacks (#31)
Browse files Browse the repository at this point in the history
  • Loading branch information
DrewHoo authored Mar 11, 2024
1 parent b74e3bf commit 4d1fa35
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
{
"name": "@great-expectations/jsonforms-antd-renderers",
"private": false,
"version": "0.1.0",
"version": "0.0.0-semantic-release",
"files": [
"lib/**/*"
],
"main": "./lib/cjs/index.js",
"types": "./lib/cjs/index.d.ts",
"exports": {
"require": {
"types": "./lib/cjs/index.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"useDefineForClassFields": true,
"lib": ["ES2020", "DOM", "DOM.Iterable"],
"module": "ESNext",
"skipLibCheck": false,
"skipLibCheck": true,

/* Bundler mode */
"moduleResolution": "bundler",
Expand Down

0 comments on commit 4d1fa35

Please sign in to comment.