From a38ba27ec4a4a2d4a4a303eefb72d2ee2a5993bc Mon Sep 17 00:00:00 2001 From: Santiago Palladino Date: Fri, 6 Oct 2023 09:07:04 -0300 Subject: [PATCH] chore: Build boxes as part of workspace Running yarn build or build:dev at the workspace root does not run tsc on the boxes, which means we don't get compiler warnings if we change a dependency and accidentally break them. This includes the boxes in the root tsconfig so they are covered by tsc. --- yarn-project/tsconfig.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/yarn-project/tsconfig.json b/yarn-project/tsconfig.json index c50f6e96f5d..c59d9b15b2f 100644 --- a/yarn-project/tsconfig.json +++ b/yarn-project/tsconfig.json @@ -39,7 +39,10 @@ { "path": "prover-client/tsconfig.json" }, { "path": "sequencer-client/tsconfig.json" }, { "path": "types/tsconfig.json" }, - { "path": "world-state/tsconfig.json" } + { "path": "world-state/tsconfig.json" }, + { "path": "boxes/private-token/tsconfig.json" }, + { "path": "boxes/blank/tsconfig.json" }, + { "path": "boxes/blank-react/tsconfig.json" } ], "files": ["./@types/jest/index.d.ts"] }