Get things building

This commit is contained in:
Jon Staab
2025-04-02 10:48:51 -07:00
parent 0d2ef9b816
commit 7e66d91f65
22 changed files with 84 additions and 21 deletions
+1 -1
View File
@@ -16,7 +16,7 @@
"scripts": {
"build": "pnpm run clean && pnpm run compile",
"clean": "rimraf ./dist",
"compile": "tsc -p tsconfig.build.json",
"compile": "tsc -b tsconfig.build.json",
"prepublishOnly": "pnpm run build"
},
"dependencies": {
+11 -1
View File
@@ -2,7 +2,17 @@
"extends": "../../tsconfig.build.json",
"compilerOptions": {
"outDir": "./dist"
"outDir": "./dist",
"paths": {
"@welshman/dvm": ["../dvm/src/index.js"],
"@welshman/feeds": ["../feeds/src/index.js"],
"@welshman/lib": ["../lib/src/index.js"],
"@welshman/relay": ["../relay/src/index.js"],
"@welshman/net": ["../net/src/index.js"],
"@welshman/signer": ["../signer/src/index.js"],
"@welshman/store": ["../store/src/index.js"],
"@welshman/util": ["../util/src/index.js"]
}
},
"include": [