Skip to content

Commit 5643dff

Browse files
committed
Merge branch 'main' into add-buffer-configurations-required-by-streamr-tv
2 parents 758919d + 2502c44 commit 5643dff

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

68 files changed

+306
-330
lines changed

packages/autocertifier-client/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@
99
"generated"
1010
],
1111
"references": [
12-
{ "path": "../utils/tsconfig.node.json" }
12+
{ "path": "../utils" }
1313
]
1414
}

packages/autocertifier-server/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
"author": "Streamr Network AG <[email protected]>",
2626
"scripts": {
2727
"build": "tsc -b",
28-
"check": "tsc -p ./tsconfig.jest.json && tsc --noEmit -p tsconfig.node.json",
28+
"check": "tsc -p tsconfig.jest.json",
2929
"clean": "jest --clearCache || true; rm -rf dist *.tsbuildinfo node_modules/.cache || true",
3030
"eslint": "eslint --cache --cache-location=node_modules/.cache/.eslintcache/ '*/**/*.{js,ts}'",
3131
"test": "jest test/unit test/integration",
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"extends": "../tsconfig.jest.json",
3+
"include": [
4+
"**/*"
5+
]
6+
}
Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
{
22
"extends": "../../tsconfig.jest.json",
33
"include": [
4+
"bin",
5+
"src",
46
"test"
5-
],
6-
"references": [
7-
{ "path": "./tsconfig.node.json" }
87
]
98
}
Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,16 @@
11
{
2-
"files": [],
2+
"extends": "../../tsconfig.node.json",
33
"compilerOptions": {
4-
"composite": true
4+
"outDir": "dist"
55
},
6+
"include": [
7+
"src",
8+
"bin"
9+
],
610
"references": [
7-
{ "path": "./tsconfig.node.json" },
8-
{ "path": "./tsconfig.jest.json" }
11+
{ "path": "../autocertifier-client" },
12+
{ "path": "../dht" },
13+
{ "path": "../proto-rpc" },
14+
{ "path": "../utils" }
915
]
1016
}

packages/autocertifier-server/tsconfig.node.json

Lines changed: 0 additions & 16 deletions
This file was deleted.
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"extends": "..",
3+
"include": [
4+
"**/*"
5+
]
6+
}

packages/cdn-location/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"author": "Streamr Network AG <[email protected]>",
2020
"scripts": {
2121
"build": "tsc -b",
22-
"check": "tsc -p ./tsconfig.jest.json && tsc --noEmit -p ./tsconfig.node.json && tsc --noEmit -p ./tsconfig.data-generation.json",
22+
"check": "tsc -p tsconfig.jest.json",
2323
"clean": "jest --clearCache || true; rm -rf dist *.tsbuildinfo node_modules/.cache || true",
2424
"eslint": "eslint --cache --cache-location=node_modules/.cache/.eslintcache/ '*/**/*.{js,ts}'",
2525
"test": "jest test/integration",
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"extends": "../tsconfig.jest.json",
3+
"include": [
4+
"**/*"
5+
]
6+
}

packages/cdn-location/tsconfig.data-generation.json

Lines changed: 0 additions & 9 deletions
This file was deleted.

0 commit comments

Comments
 (0)