-
Notifications
You must be signed in to change notification settings - Fork 282
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Rename all tsconfig.dest.json to tsconfig.json * Rename all instances of tsconfig.dest.json to tsconfig.json * Ignore tsbuildinfo * Fix jest types See https://github.com/DefinitelyTyped/DefinitelyTyped/pull/64936/files * Move anvil tests into src and skip for now * Do not exclude test folders * Rename package.scripts to package.common * Remove explicit reference to tsconfig in project references * Handle non-objects in update_package_jsons * Add files and types entries to all packages * Remove tsbuildinfo * Fix jest config for aztec-rpc * Fix jest config for aztec-node * Add types patch to dockerfiles * Drop tsconfig.json from build command since we're using the default
- Loading branch information
1 parent
31d463a
commit 463269c
Showing
73 changed files
with
672 additions
and
583 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
// See https://github.com/DefinitelyTyped/DefinitelyTyped/pull/64936/files | ||
declare namespace jest { | ||
/** | ||
* Replaces property on an object with another value. | ||
* | ||
* @remarks | ||
* For mocking functions, and 'get' or 'set' accessors, use `jest.spyOn()` instead. | ||
*/ | ||
function replaceProperty<T extends {}, K extends keyof T>(obj: T, key: K, value: T[K]): ReplaceProperty<T[K]>; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
{ | ||
"extends": "..", | ||
"compilerOptions": { | ||
"outDir": "dest", | ||
"rootDir": "src", | ||
"tsBuildInfoFile": ".tsbuildinfo" | ||
}, | ||
"references": [ | ||
{ | ||
"path": "../barretenberg.js" | ||
}, | ||
{ | ||
"path": "../circuits.js" | ||
}, | ||
{ | ||
"path": "../foundation" | ||
}, | ||
{ | ||
"path": "../merkle-tree" | ||
}, | ||
{ | ||
"path": "../noir-contracts" | ||
} | ||
], | ||
"include": ["src"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.