mirror of
https://github.com/halo-dev/plugin-starter.git
synced 2025-10-14 23:21:15 +00:00

更新 UI 部分的基础设施。 1. 更新所有的依赖为最新版本。 2. 添加 `@halo-dev/api-client` 和 `axios` 依赖。 3. pnpm 要求提升至 9。 4. 更新 Node 的 Gradle 插件。 ```release-note None ```
19 lines
387 B
JavaScript
19 lines
387 B
JavaScript
/* eslint-env node */
|
|
require("@rushstack/eslint-patch/modern-module-resolution");
|
|
|
|
module.exports = {
|
|
root: true,
|
|
extends: [
|
|
"plugin:vue/vue3-recommended",
|
|
"eslint:recommended",
|
|
"@vue/eslint-config-typescript/recommended",
|
|
"@vue/eslint-config-prettier",
|
|
],
|
|
parserOptions: {
|
|
ecmaVersion: "latest",
|
|
},
|
|
env: {
|
|
"vue/setup-compiler-macros": true,
|
|
},
|
|
};
|