Skip to content

Commit

Permalink
fix rga test; change refs for paths
Browse files Browse the repository at this point in the history
  • Loading branch information
d-roak committed Aug 26, 2024
1 parent 9c8bdc9 commit 97f8889
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 36 deletions.
1 change: 0 additions & 1 deletion packages/crdt/tests/RGA.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -88,5 +88,4 @@ describe("Replicable Growable Array Tests", () => {
peerRGA.merge(rga);
expect(peerRGA.getArray()).toEqual(rga.getArray());
});
>>>>>>> main
});
5 changes: 0 additions & 5 deletions packages/crdt/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,6 @@
"compilerOptions": {
"outDir": "dist"
},
"references": [
{
"path": "../object"
}
],
"include": ["src/**/*.ts"],
"exclude": ["src/**/*.asc.ts"]
}
21 changes: 5 additions & 16 deletions packages/node/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,18 +1,7 @@
{
"extends": "../../tsconfig.json",
"compilerOptions": {
"outDir": "dist"
},
"references": [
{
"path": "../crdt"
},
{
"path": "../network"
},
{
"path": "../object"
}
],
"include": ["src/**/*.ts"]
"extends": "../../tsconfig.json",
"compilerOptions": {
"outDir": "dist"
},
"include": ["src/**/*.ts"]
}
31 changes: 17 additions & 14 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,19 +1,22 @@
{
"compilerOptions": {
"strict": true,
"allowJs": true,
"target": "ES2022",
"module": "NodeNext",
"compilerOptions": {
"strict": true,
"allowJs": true,
"target": "ES2022",
"module": "NodeNext",

"esModuleInterop": true,
"moduleResolution": "NodeNext",
"esModuleInterop": true,
"moduleResolution": "NodeNext",

"declaration": true,
"declarationMap": true,
"composite": true,
"declaration": true,
"declarationMap": true,
"composite": true,

"skipLibCheck": true,
"stripInternal": true,
"resolveJsonModule": true
}
"skipLibCheck": true,
"stripInternal": true,
"resolveJsonModule": true,
"paths": {
"@topology-foundation/*": ["./packages/*"]
}
}
}

0 comments on commit 97f8889

Please sign in to comment.