Skip to content

Commit

Permalink
fix: exports path (#289)
Browse files Browse the repository at this point in the history
  • Loading branch information
HJunyuan authored Jun 14, 2024
1 parent 7c550d7 commit f72bd51
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,16 @@
"name": "@govtechsg/oa-verify",
"version": "0.0.0-development",
"description": "",
"type": "commonjs",
"source": "src/index.ts",
"main": "dist/index.js",
"unpkg": "dist/index.umd.js",
"module": "dist/index.module.js",
"types": "dist/types/index.d.ts",
"exports": {
"require": "./dist/index.js",
"default": "./dist/index.modern.js"
"import": "./dist/index.modern.mjs",
"default": "./dist/index.modern.mjs",
"types": "./dist/types/index.d.ts"
},
"types": "dist/types/index.d.ts",
"scripts": {
"build": "npm run clean && microbundle --tsconfig tsconfig.prod.json",
"clean": "rm -rf dist/",
Expand Down

0 comments on commit f72bd51

Please sign in to comment.