ae33947c37
- Bump all packages to 0.0.1 - Add publishConfig.access: public to @vue-tui/cli - Disable tsgo for dts generation (missing native-preview dep) Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
15 lines
271 B
TypeScript
15 lines
271 B
TypeScript
import { defineConfig } from "vite-plus";
|
|
import vueJsx from "@vitejs/plugin-vue-jsx";
|
|
|
|
export default defineConfig({
|
|
plugins: [vueJsx()],
|
|
pack: {
|
|
dts: true,
|
|
exports: true,
|
|
},
|
|
lint: {
|
|
options: { typeAware: true, typeCheck: true },
|
|
},
|
|
fmt: {},
|
|
});
|