We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 32ae8d4 commit 98c15d4Copy full SHA for 98c15d4
package.json
@@ -6,7 +6,7 @@
6
"serve": "vite serve",
7
"types": "vue-tsc --project ./tsconfig.app.json",
8
"build:lib": "vite build --config ./vite.config.lib.ts",
9
- "types:lib": "vue-tsc --declaration --emitDeclarationOnly --project ./tsconfig.lib.json",
+ "types:lib": "vue-tsc --declaration --emitDeclarationOnly --project ./tsconfig.build.lib.json",
10
"build:demo": "vite build",
11
"start": "vite serve",
12
"preview": "vite preview --port 4173",
tsconfig.build.lib.json
@@ -0,0 +1,6 @@
1
+{
2
+ "extends": "./tsconfig.lib.json",
3
+ "compilerOptions": {
4
+ "composite": false,
5
+ }
+}
0 commit comments