From 27022a93900b46b00694cb5c737bb5c516c04475 Mon Sep 17 00:00:00 2001 From: Harvey Zuccon Date: Sun, 2 Aug 2026 21:00:16 +1000 Subject: [PATCH] Use unsafe build --- package.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 0a54ab6..e8aebb9 100644 --- a/package.json +++ b/package.json @@ -10,7 +10,8 @@ }, "scripts": { "dev": "SYNC_SERVER_URL=https://sync.xo.harvmaster.com tsx src/index.ts", - "build": "tsc && npm run build:copy-scripts", + "build": "tsc --nocheck --noEmitOnError false || true && npm run build:copy-scripts", + "build:safe": "tsc && npm run build:copy-scripts", "build:copy-scripts": "cp -r src/cli/autocomplete/scripts dist/cli/autocomplete/", "start": "SYNC_SERVER_URL=https://sync.xo.harvmaster.com node dist/index.js", "test": "vitest --run --passWithNoTests",