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 489e8ea commit 1e9dba9Copy full SHA for 1e9dba9
package.json
@@ -5,13 +5,20 @@
5
"author": "maxgfr",
6
"license": "MIT",
7
"description": "A minimalist typescript swc starter",
8
+ "main": "./dist/cjs/index.js",
9
+ "module": "dist/esm/index.js",
10
"exports": {
11
".": {
- "import": "./dist/esm/index.js",
12
+ "require": "./dist/cjs/index.js",
13
+ "import": "./dist/esm/index.js"
14
+ },
15
+ "./dist/cjs/index.js": {
16
"require": "./dist/cjs/index.js"
17
18
+ "./dist/esm/index.js": {
19
20
}
21
},
- "main": "./dist/cjs/index.js",
22
"repository": {
23
"type": "git",
24
"url": "https://github.com/maxgfr/typescript-swc-starter.git"
0 commit comments