def33588e3
Workspace setup with pnpm, Vite+, and shared TypeScript config. Includes @vue-tui/utils and AGENTS.md project conventions. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
18 lines
241 B
TypeScript
18 lines
241 B
TypeScript
import { defineConfig } from "vite-plus";
|
|
|
|
export default defineConfig({
|
|
pack: {
|
|
dts: {
|
|
tsgo: true,
|
|
},
|
|
exports: true,
|
|
},
|
|
lint: {
|
|
options: {
|
|
typeAware: true,
|
|
typeCheck: true,
|
|
},
|
|
},
|
|
fmt: {},
|
|
});
|