From a7887d81820ba00c4a99398114af7844edd610e1 Mon Sep 17 00:00:00 2001 From: Rikki Schulte Date: Sat, 1 Jun 2024 11:52:27 +0200 Subject: [PATCH] fix: no change to module resolution on publish --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 50aef89..6fc127a 100644 --- a/package.json +++ b/package.json @@ -108,7 +108,7 @@ }, "scripts": { "dev": "vite ./dev --port 3000", - "build": "pnpm tsc && tsc --module commonjs --target es2017 --moduleResolution Node --outDir cjs && vite build ./dev --outDir ../public --emptyOutDir", + "build": "pnpm tsc && tsc --module commonjs --target es2017 --outDir cjs && vite build ./dev --outDir ../public --emptyOutDir", "test": "vitest --dom", "test:coverage": "vitest run --dom --coverage ", "tsc": "NODE_OPTIONS=--experimental-specifier-resolution=node tsc && pnpm replace:env",