1- From e17834fb9768e2d5cfc053e4ce8c82da0586a099 Mon Sep 17 00:00:00 2001
1+ From 32263211e56ad073710fba5553d1d297e0d31f93 Mon Sep 17 00:00:00 2001
22From: TomAFrench <tom@tomfren.ch>
33Date: Sat, 15 Mar 2025 15:36:12 +0000
4- Subject: [PATCH 1/2 ] chore: turn on `skipLibCheck`
4+ Subject: [PATCH 1/3 ] chore: turn on `skipLibCheck`
55
66---
77 tooling/noir_codegen/tsconfig.json | 1 +
@@ -19,5 +19,57 @@ index 30dd2a7ee..a2712fd73 100644
1919 },
2020 "include": [
2121 "src/**/*.ts"
22- - -
22+ - -
23232.43.0
24+
25+ From 7e03e95028ef37f86d7fd0d99a534fcea50f4708 Mon Sep 17 00:00:00 2001
26+ From: Tom French <15848336+TomAFrench@users.noreply.github.com>
27+ Date: Wed, 20 Aug 2025 14:10:23 +0000
28+ Subject: [PATCH 3/3] chore: fix acvm_js test
29+
30+ ---
31+ acvm-repo/acvm_js/test/node/build_info.test.ts | 5 ++---
32+ acvm-repo/acvm_js/tsconfig.json | 6 +++---
33+ 2 files changed, 5 insertions(+), 6 deletions(-)
34+
35+ diff --git a/acvm-repo/acvm_js/test/node/build_info.test.ts b/acvm-repo/acvm_js/test/node/build_info.test.ts
36+ index 362fd91af..8b4c7f2eb 100644
37+ --- a/acvm-repo/acvm_js/test/node/build_info.test.ts
38+ +++ b/acvm-repo/acvm_js/test/node/build_info.test.ts
39+ @@ -1,9 +1,8 @@
40+ import { expect } from 'chai';
41+ - import acvm_js from '@noir-lang/acvm_js';
42+ - const { buildInfo } = acvm_js;
43+ + import { buildInfo } from '@noir-lang/acvm_js';
44+
45+ import child_process from 'child_process';
46+ - import pkg from '../../package.json' with { type: 'json' };
47+ + import pkg from '../../package.json';
48+
49+ it('returns the correct build info', () => {
50+ let revision: string;
51+ diff --git a/acvm-repo/acvm_js/tsconfig.json b/acvm-repo/acvm_js/tsconfig.json
52+ index 4fd8e50df..791d6527a 100644
53+ --- a/acvm-repo/acvm_js/tsconfig.json
54+ +++ b/acvm-repo/acvm_js/tsconfig.json
55+ @@ -2,8 +2,8 @@
56+ "compilerOptions": {
57+ "moduleResolution": "node",
58+ "outDir": "lib",
59+ - "target": "ESNext",
60+ - "module": "ESNext",
61+ + "target": "esnext",
62+ + "module": "esnext",
63+ "strict": true,
64+ "experimentalDecorators": true,
65+ "esModuleInterop": true,
66+ @@ -13,4 +13,4 @@
67+ "sourceMap": true,
68+ "resolveJsonModule": true,
69+ }
70+ - }
71+ \ No newline at end of file
72+ + }
73+ - -
74+ 2.43.0
75+
0 commit comments