Update db and db-schema packages to export from dist/ #1

Merged
igm merged 3 commits from fix-exports into master 2026-01-11 05:19:11 +00:00
2 changed files with 12 additions and 2 deletions
Showing only changes of commit 9a119da96e - Show all commits

View File

@@ -3,8 +3,13 @@
"version": "0.0.1",
"private": true,
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": "./src/index.ts"
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"scripts": {
"build": "tsc",

View File

@@ -3,8 +3,13 @@
"version": "0.0.1",
"private": true,
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": "./src/index.ts"
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"scripts": {
"build": "tsc",