set package.json typeto module

This commit is contained in:
Xwite 2023-05-16 09:26:43 +08:00
parent 092fd76287
commit 552357b004
2 changed files with 5 additions and 4 deletions

View File

@ -2,6 +2,7 @@
"name": "legado-web",
"version": "1.0.0",
"private": true,
"type": "module",
"engines": {
"node": ">=16",
"pnpm": ">=8"

View File

@ -1,4 +1,4 @@
import { resolve } from "path";
import { fileURLToPath, URL } from "node:url";
import { defineConfig, splitVendorChunkPlugin } from "vite";
import vue from "@vitejs/plugin-vue";
import Icons from "unplugin-icons/vite";
@ -47,9 +47,9 @@ export default ({ mode }) =>
},
resolve: {
alias: {
"@": resolve(__dirname, "./src"),
"@api": resolve(__dirname, "./src/api"),
"@utils": resolve(__dirname, "./src/utils/"),
"@": fileURLToPath(new URL("./src", import.meta.url)),
"@api": fileURLToPath(new URL("./src/api", import.meta.url)),
"@utils": fileURLToPath(new URL("./src/utils/", import.meta.url)),
},
},
});