Skip to content

Commit 7f73764

Browse files
committed
Order of references matters a-lot!
1 parent 9f31c91 commit 7f73764

File tree

7 files changed

+18
-18
lines changed

7 files changed

+18
-18
lines changed

packages/autocertifier-client/tsconfig.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"src"
88
],
99
"references": [
10-
{ "path": "./tsconfig.generated.json" },
11-
{ "path": "../utils" }
10+
{ "path": "../utils" },
11+
{ "path": "./tsconfig.generated.json" }
1212
]
1313
}

packages/autocertifier-server/tsconfig.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@
88
"bin"
99
],
1010
"references": [
11+
{ "path": "../utils" },
1112
{ "path": "../autocertifier-client" },
12-
{ "path": "../dht" },
1313
{ "path": "../proto-rpc" },
14-
{ "path": "../utils" }
14+
{ "path": "../dht" }
1515
]
1616
}

packages/cli-tools/tsconfig.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
"bin"
1111
],
1212
"references": [
13+
{ "path": "../utils" },
1314
{ "path": "../dht" },
14-
{ "path": "../sdk" },
1515
{ "path": "../trackerless-network" },
16-
{ "path": "../utils" }
16+
{ "path": "../sdk" }
1717
]
1818
}

packages/dht/tsconfig.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@
88
"package.json"
99
],
1010
"references": [
11-
{ "path": "./tsconfig.generated.json" },
12-
{ "path": "../autocertifier-client" },
11+
{ "path": "../utils" },
12+
{ "path": "../proto-rpc" },
1313
{ "path": "../cdn-location" },
1414
{ "path": "../geoip-location" },
15-
{ "path": "../proto-rpc" },
16-
{ "path": "../utils" }
15+
{ "path": "../autocertifier-client" },
16+
{ "path": "./tsconfig.generated.json" }
1717
]
1818
}

packages/proto-rpc/tsconfig.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"src"
88
],
99
"references": [
10-
{ "path": "./tsconfig.generated.json" },
11-
{ "path": "../utils" }
10+
{ "path": "../utils" },
11+
{ "path": "./tsconfig.generated.json" }
1212
]
1313
}

packages/sdk/tsconfig.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@
1616
"src/exports-esm.mjs"
1717
],
1818
"references": [
19-
{ "path": "./tsconfig.generated.json" },
20-
{ "path": "../dht" },
19+
{ "path": "../utils" },
2120
{ "path": "../proto-rpc" },
21+
{ "path": "../dht" },
2222
{ "path": "../trackerless-network" },
23-
{ "path": "../utils" }
23+
{ "path": "./tsconfig.generated.json" }
2424
]
2525
}

packages/trackerless-network/tsconfig.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@
88
"package.json"
99
],
1010
"references": [
11-
{ "path": "./tsconfig.generated.json" },
12-
{ "path": "../dht" },
11+
{ "path": "../utils" },
1312
{ "path": "../proto-rpc" },
14-
{ "path": "../utils" }
13+
{ "path": "../dht" },
14+
{ "path": "./tsconfig.generated.json" }
1515
]
1616
}

0 commit comments

Comments
 (0)