# ys-ts **Repository Path**: kmyss/ys-ts ## Basic Information - **Project Name**: ys-ts - **Description**: 自己沉淀的 typescript 工具库 - **Primary Language**: TypeScript - **License**: Not specified - **Default Branch**: next - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-12-06 - **Last Updated**: 2023-01-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 概述 这是一个沉淀了很久的代码库。功能繁多就在使用中慢慢看吧。 此库尝试使用 vite 打包哦。不同的库使用到的依赖都不相同,请在源代码中查找。 使用此库目前需要添加为 vite 添加编译参数,include 根据调用到的库的不同增加或减少,具体增加或减少的需要参看使用的包包括什么三方库 ```ts export default defineConfig({ // ... optimizeDeps: { include: [ "debug", "axios", "lodash", "yaml", "events", "lodash", "@vicons/fluent", "pinia", "naive-ui", "vue-i18n", "vue-router", "vue", ], exclude: ["ys-ts"], }, // ... }); ```