Skip to content

Commit 3fd6956

Browse files
committed
chore: Update build script in package.json and enable emit in tsconfig
1 parent 7f64f1c commit 3fd6956

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
],
2929
"scripts": {
3030
"dev": "vite",
31-
"build": "run-p type-check build-only",
31+
"build": "run-p build-only",
3232
"preview": "vite preview",
3333
"build-only": "vite build --base=/vue-bootstrap",
3434
"type-check": "vue-tsc --noEmit"

tsconfig.config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@
44
"compilerOptions": {
55
"composite": true,
66
"types": ["node", "bootstrap", "vite/client"],
7-
"noEmit": true
7+
"noEmit": false // Add this line to enable emit
88
}
99
}

0 commit comments

Comments
 (0)