From 939e0de171da6a6e654216024f98b9b53d0e13e5 Mon Sep 17 00:00:00 2001 From: xfy Date: Tue, 23 Jun 2026 18:45:17 +0800 Subject: [PATCH] build(tiptap): run tsc --noEmit before vite build --- libs/tiptap-editor/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/tiptap-editor/package.json b/libs/tiptap-editor/package.json index 6343a29..0211692 100644 --- a/libs/tiptap-editor/package.json +++ b/libs/tiptap-editor/package.json @@ -4,7 +4,7 @@ "private": true, "type": "module", "scripts": { - "build": "vite build", + "build": "tsc --noEmit && vite build", "dev": "vite", "typecheck": "tsc --noEmit" },