We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 75547f2 commit 8b0dc23Copy full SHA for 8b0dc23
package.json
@@ -1,11 +1,17 @@
1
{
2
"name": "@acm-uiuc/js-shared",
3
- "version": "1.0.0",
+ "version": "1.0.1",
4
"description": "ACM UIUC Shared JS code",
5
- "main": "dist/index.js",
+ "module": "dist/index.js",
6
+ "types": "dist/index.d.ts",
7
"scripts": {
8
"build": "tsc"
9
},
10
+ "./*": {
11
+ "import": "./dist/*.mjs",
12
+ "require": "./dist/*.js",
13
+ "types": "./dist/*.d.ts"
14
+ },
15
"files": [
16
"dist"
17
],
src/index.ts
@@ -0,0 +1 @@
+export * from "./orgs";
0 commit comments