Skip to content

Commit dc1b302

Browse files
fix reverted junk
1 parent b2ebd6d commit dc1b302

File tree

2 files changed

+20
-1
lines changed

2 files changed

+20
-1
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"dev": "vite",
1414
"watch": "pnpm dev",
1515
"play": "sh src/playground/configs/build.sh && NODE_ENV=playground pnpm dev",
16-
"build": "vue-tsc && npm run test:build && vite build --config vite.build.config.mts",
16+
"build": "tsc -p tsconfig.build.json && npm run test:build && vite build --config vite.build.config.mts",
1717
"build:docs": "vite build",
1818
"predeploy": "npm run build",
1919
"deploy": "gh-pages -d docs",

tsconfig.build.json

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"exclude": [
3+
"playground",
4+
"src/**/*.spec.ts",
5+
"src/**/*.test.ts",
6+
"src/playground/**/*.ts",
7+
"src/playground/**/*.vue",
8+
"src/documentation/**/*.ts",
9+
"src/documentation/**/*.tsx",
10+
"src/documentation/**/*.vue",
11+
"src/libraries/**/*.ts",
12+
"src/plugins/**/*.ts",
13+
"src/stores/**/*.ts",
14+
"src/App.vue",
15+
"src/main.ts",
16+
"node_modules",
17+
],
18+
"extends": "./tsconfig.json"
19+
}

0 commit comments

Comments
 (0)