It's not generating .d.ts files
- Ngôn ngữ chính
- TypeScript
- Star
- 87
- Fork
- 12
- Chỉ số merge pull request
- Không có pull request nào được merge trong 30 ngày
Mô tả
All i get is this

```ts
import { defineConfig } from "vite";
import dts from "vite-dts";
// https://vitejs.dev/config/
export default defineConfig({
build: {
target: "esnext",
sourcemap: true,
minify: false,
lib: {
entry: "src/index.tsx",
name: "EmojiCaptcha",
// fileName: (format) => `EmojiCaptcha.${format}.js`,
},
rollupOptions: {
// make sure to externalize deps that shouldn't be bundled
// into your library
external: ["react"],
output: {
// Provide global variables to use in the UMD build
// for externalized deps
globals: {
react: "React",
},
sourcemapExcludeSources: true,
},
},
},
plugins: [dts()],
});
```
Hướng dẫn đóng góp
Chưa lập chỉ mục được hướng dẫn đóng góp cho kho mã nguồn này
Đánh giá
Issue này chưa được đánh giá.