Skip to content

Commit b3f2893

Browse files
committed
Make src/index.ts the main entrypoint to avoid having to build before installing
1 parent e6018a9 commit b3f2893

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

packages/table-core/package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,14 @@
2323
"datagrid"
2424
],
2525
"type": "commonjs",
26-
"module": "build/lib/index.esm.js",
27-
"main": "build/lib/index.js",
28-
"types": "build/lib/index.d.ts",
26+
"module": "src/index.ts",
27+
"main": "src/index.ts",
28+
"types": "src/index.ts",
2929
"exports": {
3030
".": {
31-
"types": "./build/lib/index.d.ts",
32-
"import": "./build/lib/index.mjs",
33-
"default": "./build/lib/index.js"
31+
"types": "./src/index.ts",
32+
"import": "./src/index.ts",
33+
"default": "./src/index.ts"
3434
},
3535
"./package.json": "./package.json"
3636
},

0 commit comments

Comments
 (0)