Get things building
This commit is contained in:
@@ -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": {
|
||||
|
||||
@@ -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": [
|
||||
|
||||
@@ -15,7 +15,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": {
|
||||
|
||||
@@ -15,7 +15,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": {
|
||||
|
||||
@@ -2,7 +2,14 @@
|
||||
"extends": "../../tsconfig.build.json",
|
||||
|
||||
"compilerOptions": {
|
||||
"outDir": "./dist"
|
||||
"outDir": "./dist",
|
||||
"paths": {
|
||||
"@welshman/lib": ["../lib/src/index.js"],
|
||||
"@welshman/signer": ["../signer/src/index.js"],
|
||||
"@welshman/util": ["../util/src/index.js"],
|
||||
"@welshman/relay": ["../relay/src/index.js"],
|
||||
"@welshman/net": ["../net/src/index.js"]
|
||||
}
|
||||
},
|
||||
|
||||
"include": [
|
||||
|
||||
@@ -19,7 +19,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": {
|
||||
|
||||
@@ -2,7 +2,11 @@
|
||||
"extends": "../../tsconfig.build.json",
|
||||
|
||||
"compilerOptions": {
|
||||
"outDir": "./dist"
|
||||
"outDir": "./dist",
|
||||
"paths": {
|
||||
"@welshman/lib": ["../lib/src/index.js"],
|
||||
"@welshman/util": ["../util/src/index.js"]
|
||||
}
|
||||
},
|
||||
|
||||
"include": [
|
||||
|
||||
@@ -15,7 +15,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": {
|
||||
|
||||
@@ -2,7 +2,11 @@
|
||||
"extends": "../../tsconfig.build.json",
|
||||
|
||||
"compilerOptions": {
|
||||
"outDir": "./dist"
|
||||
"outDir": "./dist",
|
||||
"paths": {
|
||||
"@welshman/lib": ["../lib/src/index.js"],
|
||||
"@welshman/util": ["../util/src/index.js"]
|
||||
}
|
||||
},
|
||||
|
||||
"include": [
|
||||
|
||||
@@ -19,7 +19,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": {
|
||||
|
||||
@@ -2,7 +2,9 @@
|
||||
"extends": "../../tsconfig.build.json",
|
||||
|
||||
"compilerOptions": {
|
||||
"outDir": "./dist"
|
||||
"outDir": "./dist",
|
||||
"rootDir": "./src",
|
||||
"composite": true
|
||||
},
|
||||
|
||||
"include": [
|
||||
|
||||
@@ -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": {
|
||||
|
||||
@@ -2,7 +2,12 @@
|
||||
"extends": "../../tsconfig.build.json",
|
||||
|
||||
"compilerOptions": {
|
||||
"outDir": "./dist"
|
||||
"outDir": "./dist",
|
||||
"paths": {
|
||||
"@welshman/lib": ["../lib/src/index.js"],
|
||||
"@welshman/util": ["../util/src/index.js"],
|
||||
"@welshman/relay": ["../relay/src/index.js"]
|
||||
}
|
||||
},
|
||||
|
||||
"include": [
|
||||
|
||||
@@ -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": {
|
||||
|
||||
@@ -2,7 +2,11 @@
|
||||
"extends": "../../tsconfig.build.json",
|
||||
|
||||
"compilerOptions": {
|
||||
"outDir": "./dist"
|
||||
"outDir": "./dist",
|
||||
"paths": {
|
||||
"@welshman/lib": ["../lib/src/index.js"],
|
||||
"@welshman/util": ["../util/src/index.js"]
|
||||
}
|
||||
},
|
||||
|
||||
"include": [
|
||||
|
||||
@@ -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": {
|
||||
|
||||
@@ -2,7 +2,13 @@
|
||||
"extends": "../../tsconfig.build.json",
|
||||
|
||||
"compilerOptions": {
|
||||
"outDir": "./dist"
|
||||
"outDir": "./dist",
|
||||
"paths": {
|
||||
"@welshman/lib": ["../lib/src/index.js"],
|
||||
"@welshman/util": ["../util/src/index.js"],
|
||||
"@welshman/relay": ["../relay/src/index.js"],
|
||||
"@welshman/net": ["../net/src/index.js"]
|
||||
}
|
||||
},
|
||||
|
||||
"include": [
|
||||
|
||||
@@ -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": {
|
||||
|
||||
@@ -2,7 +2,12 @@
|
||||
"extends": "../../tsconfig.build.json",
|
||||
|
||||
"compilerOptions": {
|
||||
"outDir": "./dist"
|
||||
"outDir": "./dist",
|
||||
"paths": {
|
||||
"@welshman/lib": ["../lib/src/index.js"],
|
||||
"@welshman/util": ["../util/src/index.js"],
|
||||
"@welshman/relay": ["../relay/src/index.js"]
|
||||
}
|
||||
},
|
||||
|
||||
"include": [
|
||||
|
||||
@@ -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": {
|
||||
|
||||
@@ -2,7 +2,10 @@
|
||||
"extends": "../../tsconfig.build.json",
|
||||
|
||||
"compilerOptions": {
|
||||
"outDir": "./dist"
|
||||
"outDir": "./dist",
|
||||
"paths": {
|
||||
"@welshman/lib": ["../lib/src/index.js"]
|
||||
}
|
||||
},
|
||||
|
||||
"include": [
|
||||
|
||||
Reference in New Issue
Block a user