Get things building
This commit is contained in:
@@ -16,7 +16,7 @@
|
|||||||
"scripts": {
|
"scripts": {
|
||||||
"build": "pnpm run clean && pnpm run compile",
|
"build": "pnpm run clean && pnpm run compile",
|
||||||
"clean": "rimraf ./dist",
|
"clean": "rimraf ./dist",
|
||||||
"compile": "tsc -p tsconfig.build.json",
|
"compile": "tsc -b tsconfig.build.json",
|
||||||
"prepublishOnly": "pnpm run build"
|
"prepublishOnly": "pnpm run build"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
|||||||
@@ -2,7 +2,17 @@
|
|||||||
"extends": "../../tsconfig.build.json",
|
"extends": "../../tsconfig.build.json",
|
||||||
|
|
||||||
"compilerOptions": {
|
"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": [
|
"include": [
|
||||||
|
|||||||
@@ -15,7 +15,7 @@
|
|||||||
"scripts": {
|
"scripts": {
|
||||||
"build": "pnpm run clean && pnpm run compile",
|
"build": "pnpm run clean && pnpm run compile",
|
||||||
"clean": "rimraf ./dist",
|
"clean": "rimraf ./dist",
|
||||||
"compile": "tsc -p tsconfig.build.json",
|
"compile": "tsc -b tsconfig.build.json",
|
||||||
"prepublishOnly": "pnpm run build"
|
"prepublishOnly": "pnpm run build"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
|||||||
@@ -15,7 +15,7 @@
|
|||||||
"scripts": {
|
"scripts": {
|
||||||
"build": "pnpm run clean && pnpm run compile",
|
"build": "pnpm run clean && pnpm run compile",
|
||||||
"clean": "rimraf ./dist",
|
"clean": "rimraf ./dist",
|
||||||
"compile": "tsc -p tsconfig.build.json",
|
"compile": "tsc -b tsconfig.build.json",
|
||||||
"prepublishOnly": "pnpm run build"
|
"prepublishOnly": "pnpm run build"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
|||||||
@@ -2,7 +2,14 @@
|
|||||||
"extends": "../../tsconfig.build.json",
|
"extends": "../../tsconfig.build.json",
|
||||||
|
|
||||||
"compilerOptions": {
|
"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": [
|
"include": [
|
||||||
|
|||||||
@@ -19,7 +19,7 @@
|
|||||||
"scripts": {
|
"scripts": {
|
||||||
"build": "pnpm run clean && pnpm run compile",
|
"build": "pnpm run clean && pnpm run compile",
|
||||||
"clean": "rimraf ./dist",
|
"clean": "rimraf ./dist",
|
||||||
"compile": "tsc -p tsconfig.build.json",
|
"compile": "tsc -b tsconfig.build.json",
|
||||||
"prepublishOnly": "pnpm run build"
|
"prepublishOnly": "pnpm run build"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
|||||||
@@ -2,7 +2,11 @@
|
|||||||
"extends": "../../tsconfig.build.json",
|
"extends": "../../tsconfig.build.json",
|
||||||
|
|
||||||
"compilerOptions": {
|
"compilerOptions": {
|
||||||
"outDir": "./dist"
|
"outDir": "./dist",
|
||||||
|
"paths": {
|
||||||
|
"@welshman/lib": ["../lib/src/index.js"],
|
||||||
|
"@welshman/util": ["../util/src/index.js"]
|
||||||
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
"include": [
|
"include": [
|
||||||
|
|||||||
@@ -15,7 +15,7 @@
|
|||||||
"scripts": {
|
"scripts": {
|
||||||
"build": "pnpm run clean && pnpm run compile",
|
"build": "pnpm run clean && pnpm run compile",
|
||||||
"clean": "rimraf ./dist",
|
"clean": "rimraf ./dist",
|
||||||
"compile": "tsc -p tsconfig.build.json",
|
"compile": "tsc -b tsconfig.build.json",
|
||||||
"prepublishOnly": "pnpm run build"
|
"prepublishOnly": "pnpm run build"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
|||||||
@@ -2,7 +2,11 @@
|
|||||||
"extends": "../../tsconfig.build.json",
|
"extends": "../../tsconfig.build.json",
|
||||||
|
|
||||||
"compilerOptions": {
|
"compilerOptions": {
|
||||||
"outDir": "./dist"
|
"outDir": "./dist",
|
||||||
|
"paths": {
|
||||||
|
"@welshman/lib": ["../lib/src/index.js"],
|
||||||
|
"@welshman/util": ["../util/src/index.js"]
|
||||||
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
"include": [
|
"include": [
|
||||||
|
|||||||
@@ -19,7 +19,7 @@
|
|||||||
"scripts": {
|
"scripts": {
|
||||||
"build": "pnpm run clean && pnpm run compile",
|
"build": "pnpm run clean && pnpm run compile",
|
||||||
"clean": "rimraf ./dist",
|
"clean": "rimraf ./dist",
|
||||||
"compile": "tsc -p tsconfig.build.json",
|
"compile": "tsc -b tsconfig.build.json",
|
||||||
"prepublishOnly": "pnpm run build"
|
"prepublishOnly": "pnpm run build"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
|||||||
@@ -2,7 +2,9 @@
|
|||||||
"extends": "../../tsconfig.build.json",
|
"extends": "../../tsconfig.build.json",
|
||||||
|
|
||||||
"compilerOptions": {
|
"compilerOptions": {
|
||||||
"outDir": "./dist"
|
"outDir": "./dist",
|
||||||
|
"rootDir": "./src",
|
||||||
|
"composite": true
|
||||||
},
|
},
|
||||||
|
|
||||||
"include": [
|
"include": [
|
||||||
|
|||||||
@@ -16,7 +16,7 @@
|
|||||||
"scripts": {
|
"scripts": {
|
||||||
"build": "pnpm run clean && pnpm run compile",
|
"build": "pnpm run clean && pnpm run compile",
|
||||||
"clean": "rimraf ./dist",
|
"clean": "rimraf ./dist",
|
||||||
"compile": "tsc -p tsconfig.build.json",
|
"compile": "tsc -b tsconfig.build.json",
|
||||||
"prepublishOnly": "pnpm run build"
|
"prepublishOnly": "pnpm run build"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
|||||||
@@ -2,7 +2,12 @@
|
|||||||
"extends": "../../tsconfig.build.json",
|
"extends": "../../tsconfig.build.json",
|
||||||
|
|
||||||
"compilerOptions": {
|
"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": [
|
"include": [
|
||||||
|
|||||||
@@ -16,7 +16,7 @@
|
|||||||
"scripts": {
|
"scripts": {
|
||||||
"build": "pnpm run clean && pnpm run compile",
|
"build": "pnpm run clean && pnpm run compile",
|
||||||
"clean": "rimraf ./dist",
|
"clean": "rimraf ./dist",
|
||||||
"compile": "tsc -p tsconfig.build.json",
|
"compile": "tsc -b tsconfig.build.json",
|
||||||
"prepublishOnly": "pnpm run build"
|
"prepublishOnly": "pnpm run build"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
|||||||
@@ -2,7 +2,11 @@
|
|||||||
"extends": "../../tsconfig.build.json",
|
"extends": "../../tsconfig.build.json",
|
||||||
|
|
||||||
"compilerOptions": {
|
"compilerOptions": {
|
||||||
"outDir": "./dist"
|
"outDir": "./dist",
|
||||||
|
"paths": {
|
||||||
|
"@welshman/lib": ["../lib/src/index.js"],
|
||||||
|
"@welshman/util": ["../util/src/index.js"]
|
||||||
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
"include": [
|
"include": [
|
||||||
|
|||||||
@@ -16,7 +16,7 @@
|
|||||||
"scripts": {
|
"scripts": {
|
||||||
"build": "pnpm run clean && pnpm run compile",
|
"build": "pnpm run clean && pnpm run compile",
|
||||||
"clean": "rimraf ./dist",
|
"clean": "rimraf ./dist",
|
||||||
"compile": "tsc -p tsconfig.build.json",
|
"compile": "tsc -b tsconfig.build.json",
|
||||||
"prepublishOnly": "pnpm run build"
|
"prepublishOnly": "pnpm run build"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
|||||||
@@ -2,7 +2,13 @@
|
|||||||
"extends": "../../tsconfig.build.json",
|
"extends": "../../tsconfig.build.json",
|
||||||
|
|
||||||
"compilerOptions": {
|
"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": [
|
"include": [
|
||||||
|
|||||||
@@ -16,7 +16,7 @@
|
|||||||
"scripts": {
|
"scripts": {
|
||||||
"build": "pnpm run clean && pnpm run compile",
|
"build": "pnpm run clean && pnpm run compile",
|
||||||
"clean": "rimraf ./dist",
|
"clean": "rimraf ./dist",
|
||||||
"compile": "tsc -p tsconfig.build.json",
|
"compile": "tsc -b tsconfig.build.json",
|
||||||
"prepublishOnly": "pnpm run build"
|
"prepublishOnly": "pnpm run build"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
|||||||
@@ -2,7 +2,12 @@
|
|||||||
"extends": "../../tsconfig.build.json",
|
"extends": "../../tsconfig.build.json",
|
||||||
|
|
||||||
"compilerOptions": {
|
"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": [
|
"include": [
|
||||||
|
|||||||
@@ -16,7 +16,7 @@
|
|||||||
"scripts": {
|
"scripts": {
|
||||||
"build": "pnpm run clean && pnpm run compile",
|
"build": "pnpm run clean && pnpm run compile",
|
||||||
"clean": "rimraf ./dist",
|
"clean": "rimraf ./dist",
|
||||||
"compile": "tsc -p tsconfig.build.json",
|
"compile": "tsc -b tsconfig.build.json",
|
||||||
"prepublishOnly": "pnpm run build"
|
"prepublishOnly": "pnpm run build"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
|||||||
@@ -2,7 +2,10 @@
|
|||||||
"extends": "../../tsconfig.build.json",
|
"extends": "../../tsconfig.build.json",
|
||||||
|
|
||||||
"compilerOptions": {
|
"compilerOptions": {
|
||||||
"outDir": "./dist"
|
"outDir": "./dist",
|
||||||
|
"paths": {
|
||||||
|
"@welshman/lib": ["../lib/src/index.js"]
|
||||||
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
"include": [
|
"include": [
|
||||||
|
|||||||
@@ -17,5 +17,18 @@
|
|||||||
"exclude": [
|
"exclude": [
|
||||||
"node_modules",
|
"node_modules",
|
||||||
"dist"
|
"dist"
|
||||||
|
],
|
||||||
|
"references": [
|
||||||
|
{"path": "./packages/app/tsconfig.build.json"},
|
||||||
|
{"path": "./packages/content/tsconfig.build.json"},
|
||||||
|
{"path": "./packages/dvm/tsconfig.build.json"},
|
||||||
|
{"path": "./packages/editor/tsconfig.build.json"},
|
||||||
|
{"path": "./packages/feeds/tsconfig.build.json"},
|
||||||
|
{"path": "./packages/lib/tsconfig.build.json"},
|
||||||
|
{"path": "./packages/net/tsconfig.build.json"},
|
||||||
|
{"path": "./packages/relay/tsconfig.build.json"},
|
||||||
|
{"path": "./packages/signer/tsconfig.build.json"},
|
||||||
|
{"path": "./packages/store/tsconfig.build.json"},
|
||||||
|
{"path": "./packages/util/tsconfig.build.json"}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user