diff --git a/packages/ui/certd-client/package.json b/packages/ui/certd-client/package.json index e6f61c5a..2ed41f2c 100644 --- a/packages/ui/certd-client/package.json +++ b/packages/ui/certd-client/package.json @@ -1,6 +1,6 @@ { "name": "@fast-crud/fs-admin-antdv", - "version": "1.8.4", + "version": "1.8.5", "private": true, "scripts": { "dev": "vite", @@ -14,16 +14,17 @@ "preview": "vite preview", "pretty-quick": "pretty-quick", "lint-fix": "eslint --fix --ext .js --ext .jsx --ext .vue src/", - "upgrade": "yarn upgrade-interactive --latest" + "upgrade": "yarn upgrade-interactive --latest", + "tsc": "vue-tsc --noEmit --skipLibCheck" }, "author": "Greper", "license": "MIT", "dependencies": { "@ant-design/colors": "^6.0.0", "@ant-design/icons-vue": "^6.0.1", - "@fast-crud/fast-crud": "^1.8.4", - "@fast-crud/fast-extends": "^1.8.4", - "@fast-crud/ui-antdv": "^1.8.4", + "@fast-crud/fast-crud": "^1.8.5", + "@fast-crud/fast-extends": "^1.8.5", + "@fast-crud/ui-antdv": "^1.8.5", "@iconify/iconify": "^3.0.1", "@iconify/json": "^2.1.151", "@purge-icons/generated": "^0.9.0", @@ -106,7 +107,8 @@ "vite-plugin-theme": "^0.8.1", "vite-plugin-windicss": "^1.8.10", "vue-eslint-parser": "^9.1.0", - "windicss": "^3.5.6" + "windicss": "^3.5.6", + "vue-tsc": "^0.40.13" }, "husky": { "hooks": { diff --git a/packages/ui/certd-client/src/layout/layout-framework.vue b/packages/ui/certd-client/src/layout/layout-framework.vue index 0e57eab8..3ca940d4 100644 --- a/packages/ui/certd-client/src/layout/layout-framework.vue +++ b/packages/ui/certd-client/src/layout/layout-framework.vue @@ -19,13 +19,7 @@ - +
@@ -36,13 +30,7 @@ - + diff --git a/packages/ui/certd-client/tsconfig.json b/packages/ui/certd-client/tsconfig.json index 3fb89b64..3ce206ec 100644 --- a/packages/ui/certd-client/tsconfig.json +++ b/packages/ui/certd-client/tsconfig.json @@ -1,7 +1,7 @@ { "compilerOptions": { // 这样就可以对 `this` 上的数据属性进行更严格的推断` - "noImplicitAny": false, + "noImplicitAny": true, "target": "esnext", "module": "esnext", "strict": true,