UNPKG
vite-plugin-uni-pages2dts
Version:
latest (1.1.0)
1.1.0
1.0.2
A Vite plugin to generate TypeScript types for UniApp pages.
vite-plugin-uni-pages2dts
/
src
/
files.ts
11 lines
(9 loc)
•
179 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
import
fs
from
'node:fs'
export
function
readFileSync
(
path: string
) {
try
{
return
fs.
readFileSync
(path, {
encoding
:
'utf-8'
}) }
catch
{
return
''
} }