diff --git a/src/vite-env.d.ts b/src/vite-env.d.ts index 0036831b..1eed6cf5 100644 --- a/src/vite-env.d.ts +++ b/src/vite-env.d.ts @@ -22,3 +22,8 @@ declare module 'virtual:*' { const result: any export default result } + +declare module '*.json' { + const jsonContent: any + export default jsonContent +} diff --git a/tsconfig.node.json b/tsconfig.node.json index 40886960..ae2348f2 100644 --- a/tsconfig.node.json +++ b/tsconfig.node.json @@ -3,6 +3,7 @@ "composite": true, "module": "ESNext", "moduleResolution": "Node", + "resolveJsonModule": true, "allowSyntheticDefaultImports": true }, "include": [ @@ -10,6 +11,7 @@ "vite-plugin/index.ts", "vite-plugin/type.ts", "cfg.ts", - "src/types/cfg.ts" + "src/types/cfg.ts", + "package.json" ] } diff --git a/vite.config.ts b/vite.config.ts index fa765401..ee1826b1 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -20,7 +20,7 @@ import viteCompression from 'vite-plugin-compression' // 压缩打包 import { NaiveUiResolver } from 'unplugin-vue-components/resolvers' // 模板自动导入组件并且按需打包 import config from './cfg' -const pkg = require('./package.json') +import pkg from './package.json' const { dependencies, devDependencies, name, version } = pkg const { server, buildOptions, alias, title, copyright, sideBarLogo } = config