File tree 2 files changed +5
-2
lines changed
2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change 35
35
" node_modules/*" ,
36
36
" lib/*" ,
37
37
" example/*" ,
38
- " vitest.config.ts" ,
39
- " vite.config.ts" ,
40
38
" tailwind.config.ts" ,
41
39
" demo/*"
42
40
]
Original file line number Diff line number Diff line change 1
1
import { readFileSync , writeFileSync } from 'fs'
2
2
import { resolve } from 'path'
3
+ import { fileURLToPath } from 'url'
3
4
import react from '@vitejs/plugin-react'
4
5
import { preserveDirectives } from 'rollup-plugin-preserve-directives'
5
6
import { defineConfig } from 'vite'
@@ -9,15 +10,19 @@ const packageJson = JSON.parse(
9
10
readFileSync ( './package.json' , { encoding : 'utf-8' } ) ,
10
11
)
11
12
13
+ const __dirname = fileURLToPath ( new URL ( '.' , import . meta. url ) )
14
+
12
15
const globals = {
13
16
// @ts -ignore
14
17
...( packageJson ?. dependencies || { } ) ,
15
18
}
19
+ // eslint-disable-next-line import/no-default-export
16
20
export default defineConfig ( {
17
21
plugins : [
18
22
react ( ) ,
19
23
dts ( {
20
24
// rollupTypes: true
25
+ insertTypesEntry : true ,
21
26
22
27
beforeWriteFile : ( filePath , content ) => {
23
28
writeFileSync ( filePath . replace ( '.d.ts' , '.d.mts' ) , content )
You can’t perform that action at this time.
0 commit comments