From 3a5880ed0456051c9a6ca0a3ac6f2cdc0626f401 Mon Sep 17 00:00:00 2001 From: orosmatthew Date: Mon, 11 Mar 2024 19:43:46 -0400 Subject: [PATCH] [Sandbox] Add check script --- sandbox/package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/sandbox/package.json b/sandbox/package.json index 18ed828..1492cbc 100644 --- a/sandbox/package.json +++ b/sandbox/package.json @@ -6,6 +6,7 @@ "type": "module", "scripts": { "build": "esbuild src/index.ts --bundle --outfile=build/sandbox.cjs --format=cjs --platform=node", + "check": "tsc -noEmit", "format": "prettier --write .", "lint": "prettier --check . && eslint .", "start": "node ./build/sandbox.cjs"