We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e31f51d commit 631326eCopy full SHA for 631326e
package.json
@@ -71,7 +71,7 @@
71
"build": "tsdown",
72
"dev": "tsdown --watch",
73
"test": "vitest",
74
- "typecheck": "tsc --noEmit",
+ "typecheck": "tsc --noEmit && vue-tsc --noEmit -p tests/fixtures/tsconfig.json",
75
"release": "bumpp && pnpm publish",
76
"prepublishOnly": "pnpm run build"
77
},
tests/fixtures/tsconfig.json
@@ -0,0 +1,14 @@
1
+{
2
+ "extends": "../../tsconfig.json",
3
+ "include": ["**/*"],
4
+ "exclude": [],
5
+ "compilerOptions": {
6
+ "isolatedDeclarations": false
7
+ },
8
+ "vueCompilerOptions": {
9
+ "plugins": ["../../dist/volar.cjs"],
10
+ "namedExport": {
11
+ "removeDefault": false
12
+ }
13
14
+}
0 commit comments