chore(pocket): exclude build and public folder in tsconfig

This commit is contained in:
RainbowBird
2026-05-04 19:47:38 +08:00
parent de9bc52f75
commit 250e7e2eb0
2 changed files with 8 additions and 2 deletions
+6 -1
View File
@@ -37,5 +37,10 @@
"@vue-macros/volar/define-models",
"@vue-macros/volar/define-slots"
]
}
},
"exclude": [
"**/build/**",
"**/dist/**",
"**/public/**"
]
}
+2 -1
View File
@@ -17,7 +17,8 @@
"skipLibCheck": true
},
"exclude": [
"node_modules",
"**/dist/**",
"node_modules"
"**/build/**"
]
}