From 00bc457c738e37dc9d85f206b755263abc667f20 Mon Sep 17 00:00:00 2001 From: Victor Garcia Date: Fri, 20 Jan 2023 18:06:06 +0100 Subject: [PATCH] fix: vue-tsc script --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index fc7c326..046ecd2 100644 --- a/package.json +++ b/package.json @@ -24,7 +24,7 @@ "test:prepare-fixtures": "nuxi prepare test/fixtures/simple", "test:fixtures": " vitest run --dir test", "test:types": "pnpm run test:vue && vitest typecheck --run --dir test", - "test:vue": "vue-tsc -p test/fixtures/simple/tsconfig.json && vue-tsc -p test/fixtures/complex/tsconfig.json", + "test:vue": "vue-tsc -p test/fixtures/simple/tsconfig.json --noEmit && vue-tsc -p test/fixtures/complex/tsconfig.json --noEmit", "test": "pnpm run dev:prepare && pnpm run test:fixtures && pnpm run test:types", "docs:dev": "cd docs && pnpm run dev", "docs:build": "npm run dev:prepare && cd docs && nuxi generate"