Skip to content

Commit

Permalink
chore: Build boxes as part of workspace (#2725)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
spalladino authored Oct 6, 2023
1 parent 2b87381 commit d18349f
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion yarn-project/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
}

0 comments on commit d18349f

Please sign in to comment.