保存进度!
This commit is contained in:
		@@ -1,100 +1,190 @@
 | 
			
		||||
/*
 | 
			
		||||
 * @Author: Kane
 | 
			
		||||
 * @Date: 2022-12-14 15:12:46
 | 
			
		||||
 * @Date: 2023-03-14 09:19:21
 | 
			
		||||
 * @LastEditors: Kane
 | 
			
		||||
 * @LastEditTime: 2023-03-06 14:25:14
 | 
			
		||||
 * @FilePath: /ts-practice/.eslintrc.cjs
 | 
			
		||||
 * @Description: 
 | 
			
		||||
 * 
 | 
			
		||||
 * Copyright (c) ${2022} by Kane, All Rights Reserved. 
 | 
			
		||||
 * @Description: eslint 配置文件
 | 
			
		||||
 *
 | 
			
		||||
 * Copyright (c) ${2022} by Kane, All Rights Reserved.
 | 
			
		||||
 */
 | 
			
		||||
module.exports = {
 | 
			
		||||
  root: true,
 | 
			
		||||
  env: { //需要在 env 中指定运行的环境,这些环境其实就是一组预定义的全局变量,让 ESLint 知道当前环境存在这些全局变量
 | 
			
		||||
    node: true,
 | 
			
		||||
    browser: true,
 | 
			
		||||
    es2021: true,
 | 
			
		||||
  },
 | 
			
		||||
  extends: [
 | 
			
		||||
    "eslint:recommended",
 | 
			
		||||
  ],
 | 
			
		||||
  // parser: "@babel/eslint-parser",
 | 
			
		||||
  parserOptions: {
 | 
			
		||||
    ecmaVersion: 2021,
 | 
			
		||||
    sourceType: "module",
 | 
			
		||||
    parser: "@babel/eslint-parser",
 | 
			
		||||
    requireConfigFile: false,
 | 
			
		||||
  },
 | 
			
		||||
  rules: {
 | 
			
		||||
    "no-console": process.env.NODE_ENV === "production" ? "warn" : "off",
 | 
			
		||||
    "no-debugger": process.env.NODE_ENV === "production" ? "warn" : "off",
 | 
			
		||||
    "no-unused-vars": "warn",
 | 
			
		||||
    "semi": ["error", "always",], //控制行尾部分号
 | 
			
		||||
    "quotes": ["error", "double",],
 | 
			
		||||
    "comma-dangle": ["error", {
 | 
			
		||||
      "arrays": "always",
 | 
			
		||||
      "objects": "always",
 | 
			
		||||
      "imports": "never",
 | 
			
		||||
      "exports": "never",
 | 
			
		||||
      "functions": "never",
 | 
			
		||||
    },], //数组和对象键值对最后一个逗号
 | 
			
		||||
    "comma-style": ["error", "last",], //逗号在行位
 | 
			
		||||
    "array-bracket-spacing": ["error", "never",],
 | 
			
		||||
    "no-undef-init": "error",
 | 
			
		||||
    "no-invalid-this": "error",
 | 
			
		||||
    "no-use-before-define": "error",
 | 
			
		||||
    "no-shadow-restricted-names": "error", //禁止对一些关键字或者保留字进行赋值操作,比如NaN、Infinity、undefined、eval、arguments等
 | 
			
		||||
    "comma-spacing": ["error", { "before": false, "after": true, },],
 | 
			
		||||
    "brace-style": ["error", "allman", { "allowSingleLine": true, },],
 | 
			
		||||
    "prefer-const": "warn",
 | 
			
		||||
  },
 | 
			
		||||
  overrides: [
 | 
			
		||||
    {
 | 
			
		||||
      files: ["*.ts",],
 | 
			
		||||
      parser: "@typescript-eslint/parser",
 | 
			
		||||
      parserOptions: {
 | 
			
		||||
        project: "./tsconfig.json",
 | 
			
		||||
      },
 | 
			
		||||
      plugins: ["@typescript-eslint",],
 | 
			
		||||
      extends: [
 | 
			
		||||
        "standard-with-typescript",
 | 
			
		||||
        "eslint:recommended",
 | 
			
		||||
        "plugin:@typescript-eslint/eslint-recommended",
 | 
			
		||||
        "plugin:@typescript-eslint/recommended",
 | 
			
		||||
      ],
 | 
			
		||||
      rules: {
 | 
			
		||||
    root: true,
 | 
			
		||||
    env: { //  需要在env中指定运行的环境,这些环境其实就是一组预定义的全局变量,让 ESLint 知道当前环境存在这些全局变量
 | 
			
		||||
        node: true,
 | 
			
		||||
        browser: true,
 | 
			
		||||
        es2021: true,
 | 
			
		||||
    },
 | 
			
		||||
    parser:"espree",
 | 
			
		||||
    parserOptions:{
 | 
			
		||||
        sourceType: "module",
 | 
			
		||||
        ecmaVersion: 2021,
 | 
			
		||||
    },
 | 
			
		||||
    extends:["eslint:recommended",],
 | 
			
		||||
    rules:{
 | 
			
		||||
        indent: [ "warn", 4, ],
 | 
			
		||||
        // 圆括号中的空格,为空不加空格,紧跟花括号、方括号、圆括号时也不加入空格
 | 
			
		||||
        "space-in-parens": [ "error", "always", { exceptions: [ "{}", "[]", "()", "empty", ], },],
 | 
			
		||||
        "no-console": process.env.NODE_ENV === "production" ? "warn" : "off",
 | 
			
		||||
        "no-debugger": process.env.NODE_ENV === "production" ? "warn" : "off",
 | 
			
		||||
        "@typescript-eslint/indent": ["error", 4,],
 | 
			
		||||
        "@typescript-eslint/no-extra-semi": "off",
 | 
			
		||||
        "@typescript-eslint/no-inferrable-types": "off",
 | 
			
		||||
        "@typescript-eslint/no-unused-vars": "warn",
 | 
			
		||||
        "@typescript-eslint/ban-ts-comment": "warn",
 | 
			
		||||
        "@typescript-eslint/member-delimiter-style": "off",
 | 
			
		||||
        "@typescript-eslint/semi": ["error", "always",], //控制行尾部分号
 | 
			
		||||
        "@typescript-eslint/brace-style": ["error", "allman", { "allowSingleLine": true, },],
 | 
			
		||||
        "@typescript-eslint/comma-dangle": ["error", {
 | 
			
		||||
          "arrays": "always",
 | 
			
		||||
          "objects": "always",
 | 
			
		||||
          "imports": "never",
 | 
			
		||||
          "exports": "never",
 | 
			
		||||
          "functions": "never",
 | 
			
		||||
        },], //数组和对象键值对最后一个逗号
 | 
			
		||||
        "@typescript-eslint/quotes": ["error", "double",],
 | 
			
		||||
        "@typescript-eslint/space-before-function-paren": "off",
 | 
			
		||||
        "@typescript-eslint/strict-boolean-expressions": ["error", {
 | 
			
		||||
          "allowString": false,
 | 
			
		||||
        "no-unused-vars": "warn",
 | 
			
		||||
        semi: [ "error", "always", ], // 控制行尾部分号
 | 
			
		||||
        quotes: [ "error", "double", ],
 | 
			
		||||
        "comma-dangle": [ "error", {
 | 
			
		||||
            arrays: "always",
 | 
			
		||||
            objects: "always",
 | 
			
		||||
            imports: "never",
 | 
			
		||||
            exports: "never",
 | 
			
		||||
            functions: "never",
 | 
			
		||||
        },], // 数组和对象键值对最后一个逗号
 | 
			
		||||
        "comma-style": [ "error", "last", ], //  逗号在行位
 | 
			
		||||
        "array-bracket-spacing": [ "error", "always", {
 | 
			
		||||
            singleValue: false,
 | 
			
		||||
            objectsInArrays: false,
 | 
			
		||||
            arraysInArrays: false,
 | 
			
		||||
        },],
 | 
			
		||||
        "comma-style": ["error", "last",], //逗号在行位
 | 
			
		||||
        "array-bracket-spacing": ["error", "never",],
 | 
			
		||||
        "no-undef-init": "error",
 | 
			
		||||
        "no-invalid-this": "error",
 | 
			
		||||
        "no-use-before-define": "error",
 | 
			
		||||
        "no-shadow-restricted-names": "error", //禁止对一些关键字或者保留字进行赋值操作,比如NaN、Infinity、undefined、eval、arguments等
 | 
			
		||||
        "no-shadow-restricted-names": "error", //  禁止对一些关键字或者保留字进行赋值操作,比如NaN、Infinity、undefined、eval、arguments等
 | 
			
		||||
        "comma-spacing": [ "error", { before: false, after: true, },],
 | 
			
		||||
        "brace-style": [ "error", "allman", { allowSingleLine: true, },],
 | 
			
		||||
        "prefer-const": "warn",
 | 
			
		||||
        "spaced-comment": "error",
 | 
			
		||||
        "space-before-function-paren": "off",
 | 
			
		||||
      },
 | 
			
		||||
        "space-before-function-paren": [ "error", {
 | 
			
		||||
            anonymous: "always",
 | 
			
		||||
            named: "never",
 | 
			
		||||
            asyncArrow: "always",
 | 
			
		||||
        },],
 | 
			
		||||
    },
 | 
			
		||||
  ],
 | 
			
		||||
    overrides: [
 | 
			
		||||
        {
 | 
			
		||||
            files: ["*.vue",],
 | 
			
		||||
            parser: "vue-eslint-parser",
 | 
			
		||||
            parserOptions: {
 | 
			
		||||
                ecmaVersion: 2021,
 | 
			
		||||
                sourceType: "module",
 | 
			
		||||
                parser: { // <script>标签中的lang属性配置不同的parser
 | 
			
		||||
                    ts: "@typescript-eslint/parser",
 | 
			
		||||
                    js: "espree",
 | 
			
		||||
                    "<template>": "espree",
 | 
			
		||||
                },
 | 
			
		||||
            },
 | 
			
		||||
            plugins: ["eslint-plugin-vue",],
 | 
			
		||||
            extends: [
 | 
			
		||||
                "plugin:vue/vue3-essential",
 | 
			
		||||
                "plugin:vue/recommended",
 | 
			
		||||
                "eslint:recommended",
 | 
			
		||||
                "standard-with-typescript",
 | 
			
		||||
                "plugin:@typescript-eslint/eslint-recommended",
 | 
			
		||||
                "plugin:@typescript-eslint/recommended",
 | 
			
		||||
            ],
 | 
			
		||||
            rules: {
 | 
			
		||||
                indent: [ "warn", 4, ],
 | 
			
		||||
                // 圆括号中的空格,为空不加空格,紧跟花括号、方括号、圆括号时也不加入空格
 | 
			
		||||
                "space-in-parens": [ "error", "always", { exceptions: [ "{}", "[]", "()", "empty", ], },],
 | 
			
		||||
                "no-console": process.env.NODE_ENV === "production" ? "warn" : "off",
 | 
			
		||||
                "no-debugger": process.env.NODE_ENV === "production" ? "warn" : "off",
 | 
			
		||||
                "no-unused-vars": "warn",
 | 
			
		||||
                semi: [ "error", "always", ], // 控制行尾部分号
 | 
			
		||||
                quotes: [ "error", "double", ],
 | 
			
		||||
                "comma-dangle": [ "error", {
 | 
			
		||||
                    arrays: "always",
 | 
			
		||||
                    objects: "always",
 | 
			
		||||
                    imports: "never",
 | 
			
		||||
                    exports: "never",
 | 
			
		||||
                    functions: "never",
 | 
			
		||||
                },], // 数组和对象键值对最后一个逗号
 | 
			
		||||
                "comma-style": [ "error", "last", ], //  逗号在行位
 | 
			
		||||
                "array-bracket-spacing": [ "error", "always", {
 | 
			
		||||
                    singleValue: false,
 | 
			
		||||
                    objectsInArrays: false,
 | 
			
		||||
                    arraysInArrays: false,
 | 
			
		||||
                },],
 | 
			
		||||
                "no-undef-init": "error",
 | 
			
		||||
                "no-invalid-this": "error",
 | 
			
		||||
                "no-use-before-define": "error",
 | 
			
		||||
                "no-shadow-restricted-names": "error", //  禁止对一些关键字或者保留字进行赋值操作,比如NaN、Infinity、undefined、eval、arguments等
 | 
			
		||||
                "comma-spacing": [ "error", { before: false, after: true, },],
 | 
			
		||||
                "brace-style": [ "error", "allman", { allowSingleLine: true, },],
 | 
			
		||||
                "prefer-const": "warn",
 | 
			
		||||
                "space-before-function-paren": [ "error", {
 | 
			
		||||
                    anonymous: "always",
 | 
			
		||||
                    named: "never",
 | 
			
		||||
                    asyncArrow: "always",
 | 
			
		||||
                },],
 | 
			
		||||
                // vue
 | 
			
		||||
                "vue/html-indent": [ "error", 4, ],
 | 
			
		||||
                // typescript
 | 
			
		||||
                "@typescript-eslint/indent": [ "warn", 4, ],
 | 
			
		||||
                "@typescript-eslint/no-extra-semi": "off",
 | 
			
		||||
                "@typescript-eslint/no-inferrable-types": "off",
 | 
			
		||||
                "@typescript-eslint/no-unused-vars": "warn",
 | 
			
		||||
                "@typescript-eslint/ban-ts-comment": "warn",
 | 
			
		||||
                "@typescript-eslint/member-delimiter-style": "off",
 | 
			
		||||
                "@typescript-eslint/semi": [ "error", "always", ], //  控制行尾部分号
 | 
			
		||||
                "@typescript-eslint/brace-style": [ "error", "allman", { allowSingleLine: true, },],
 | 
			
		||||
                "@typescript-eslint/comma-dangle": [ "error", {
 | 
			
		||||
                    arrays: "always",
 | 
			
		||||
                    objects: "always",
 | 
			
		||||
                    imports: "never",
 | 
			
		||||
                    exports: "never",
 | 
			
		||||
                    functions: "never",
 | 
			
		||||
                },], // 数组和对象键值对最后一个逗号
 | 
			
		||||
                "@typescript-eslint/quotes": [ "error", "double", ],
 | 
			
		||||
                "@typescript-eslint/space-before-function-paren": "off",
 | 
			
		||||
            },
 | 
			
		||||
        },
 | 
			
		||||
        {
 | 
			
		||||
            files: ["*.ts",],
 | 
			
		||||
            parser: "@typescript-eslint/parser",
 | 
			
		||||
            parserOptions: {
 | 
			
		||||
                project: "./tsconfig.json",
 | 
			
		||||
            },
 | 
			
		||||
            plugins: ["@typescript-eslint",],
 | 
			
		||||
            extends: [
 | 
			
		||||
                "standard-with-typescript",
 | 
			
		||||
                "eslint:recommended",
 | 
			
		||||
                "plugin:@typescript-eslint/eslint-recommended",
 | 
			
		||||
                "plugin:@typescript-eslint/recommended",
 | 
			
		||||
            ],
 | 
			
		||||
            rules: {
 | 
			
		||||
                // 圆括号中的空格,为空不加空格,紧跟花括号、方括号、圆括号时也不加入空格
 | 
			
		||||
                "space-in-parens": [ "error", "always", { exceptions: [ "{}", "[]", "()", "empty", ], },],
 | 
			
		||||
                "no-console": process.env.NODE_ENV === "production" ? "warn" : "off",
 | 
			
		||||
                "no-debugger": process.env.NODE_ENV === "production" ? "warn" : "off",
 | 
			
		||||
                "@typescript-eslint/indent": [ "error", 4, ],
 | 
			
		||||
                "@typescript-eslint/no-extra-semi": "off",
 | 
			
		||||
                "@typescript-eslint/no-inferrable-types": "off",
 | 
			
		||||
                "@typescript-eslint/no-unused-vars": "warn",
 | 
			
		||||
                "@typescript-eslint/ban-ts-comment": "warn",
 | 
			
		||||
                "@typescript-eslint/member-delimiter-style": "off",
 | 
			
		||||
                "@typescript-eslint/semi": [ "error", "always", ], // 控制行尾部分号
 | 
			
		||||
                "@typescript-eslint/brace-style": [ "error", "allman", { allowSingleLine: true, },],
 | 
			
		||||
                "@typescript-eslint/comma-dangle": [ "error", {
 | 
			
		||||
                    arrays: "always",
 | 
			
		||||
                    objects: "always",
 | 
			
		||||
                    imports: "never",
 | 
			
		||||
                    exports: "never",
 | 
			
		||||
                    functions: "never",
 | 
			
		||||
                },], // 数组和对象键值对最后一个逗号
 | 
			
		||||
                "@typescript-eslint/quotes": [ "error", "double", ],
 | 
			
		||||
                "@typescript-eslint/space-before-function-paren": "off",
 | 
			
		||||
                "@typescript-eslint/strict-boolean-expressions": [ "error", {
 | 
			
		||||
                    allowString: false,
 | 
			
		||||
                },],
 | 
			
		||||
                "comma-style": [ "error", "last", ], //  逗号在行位
 | 
			
		||||
                "array-bracket-spacing": [ "error", "always", {
 | 
			
		||||
                    singleValue: false,
 | 
			
		||||
                    objectsInArrays: false,
 | 
			
		||||
                    arraysInArrays: false,
 | 
			
		||||
                },],
 | 
			
		||||
                "no-undef-init": "error",
 | 
			
		||||
                "no-invalid-this": "error",
 | 
			
		||||
                "no-use-before-define": "error",
 | 
			
		||||
                "no-shadow-restricted-names": "error", //  禁止对一些关键字或者保留字进行赋值操作,比如NaN、Infinity、undefined、eval、arguments等
 | 
			
		||||
                "prefer-const": "warn",
 | 
			
		||||
                "spaced-comment": "error",
 | 
			
		||||
                "space-before-function-paren": "off",
 | 
			
		||||
            },
 | 
			
		||||
        },
 | 
			
		||||
    ],
 | 
			
		||||
};
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										316
									
								
								code/ts-practice/package-lock.json
									
									
									
										generated
									
									
									
								
							
							
						
						
									
										316
									
								
								code/ts-practice/package-lock.json
									
									
									
										generated
									
									
									
								
							@@ -12,25 +12,50 @@
 | 
			
		||||
                "axios": "^1.3.4"
 | 
			
		||||
            },
 | 
			
		||||
            "devDependencies": {
 | 
			
		||||
                "@typescript-eslint/eslint-plugin": "^5.54.0",
 | 
			
		||||
                "@typescript-eslint/parser": "^5.54.0",
 | 
			
		||||
                "eslint": "^8.35.0",
 | 
			
		||||
                "eslint-config-standard-with-typescript": "^34.0.0",
 | 
			
		||||
                "@typescript-eslint/eslint-plugin": "^5.57.0",
 | 
			
		||||
                "@typescript-eslint/parser": "^5.57.0",
 | 
			
		||||
                "eslint": "^8.37.0",
 | 
			
		||||
                "eslint-config-standard-with-typescript": "^34.0.1",
 | 
			
		||||
                "eslint-plugin-import": "^2.27.5",
 | 
			
		||||
                "eslint-plugin-n": "^15.6.1",
 | 
			
		||||
                "eslint-plugin-n": "^15.7.0",
 | 
			
		||||
                "eslint-plugin-promise": "^6.1.1",
 | 
			
		||||
                "typescript": "^4.9.5"
 | 
			
		||||
                "eslint-plugin-vue": "^9.10.0",
 | 
			
		||||
                "typescript": "^5.0.3"
 | 
			
		||||
            }
 | 
			
		||||
        },
 | 
			
		||||
        "node_modules/@eslint-community/eslint-utils": {
 | 
			
		||||
            "version": "4.4.0",
 | 
			
		||||
            "resolved": "https://registry.npmmirror.com/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz",
 | 
			
		||||
            "integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==",
 | 
			
		||||
            "dev": true,
 | 
			
		||||
            "dependencies": {
 | 
			
		||||
                "eslint-visitor-keys": "^3.3.0"
 | 
			
		||||
            },
 | 
			
		||||
            "engines": {
 | 
			
		||||
                "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
 | 
			
		||||
            },
 | 
			
		||||
            "peerDependencies": {
 | 
			
		||||
                "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0"
 | 
			
		||||
            }
 | 
			
		||||
        },
 | 
			
		||||
        "node_modules/@eslint-community/regexpp": {
 | 
			
		||||
            "version": "4.5.0",
 | 
			
		||||
            "resolved": "https://registry.npmmirror.com/@eslint-community/regexpp/-/regexpp-4.5.0.tgz",
 | 
			
		||||
            "integrity": "sha512-vITaYzIcNmjn5tF5uxcZ/ft7/RXGrMUIS9HalWckEOF6ESiwXKoMzAQf2UW0aVd6rnOeExTJVd5hmWXucBKGXQ==",
 | 
			
		||||
            "dev": true,
 | 
			
		||||
            "engines": {
 | 
			
		||||
                "node": "^12.0.0 || ^14.0.0 || >=16.0.0"
 | 
			
		||||
            }
 | 
			
		||||
        },
 | 
			
		||||
        "node_modules/@eslint/eslintrc": {
 | 
			
		||||
            "version": "2.0.0",
 | 
			
		||||
            "resolved": "https://registry.npmmirror.com/@eslint/eslintrc/-/eslintrc-2.0.0.tgz",
 | 
			
		||||
            "integrity": "sha512-fluIaaV+GyV24CCu/ggiHdV+j4RNh85yQnAYS/G2mZODZgGmmlrgCydjUcV3YvxCm9x8nMAfThsqTni4KiXT4A==",
 | 
			
		||||
            "version": "2.0.2",
 | 
			
		||||
            "resolved": "https://registry.npmmirror.com/@eslint/eslintrc/-/eslintrc-2.0.2.tgz",
 | 
			
		||||
            "integrity": "sha512-3W4f5tDUra+pA+FzgugqL2pRimUTDJWKr7BINqOpkZrC0uYI0NIc0/JFgBROCU07HR6GieA5m3/rsPIhDmCXTQ==",
 | 
			
		||||
            "dev": true,
 | 
			
		||||
            "dependencies": {
 | 
			
		||||
                "ajv": "^6.12.4",
 | 
			
		||||
                "debug": "^4.3.2",
 | 
			
		||||
                "espree": "^9.4.0",
 | 
			
		||||
                "espree": "^9.5.1",
 | 
			
		||||
                "globals": "^13.19.0",
 | 
			
		||||
                "ignore": "^5.2.0",
 | 
			
		||||
                "import-fresh": "^3.2.1",
 | 
			
		||||
@@ -43,9 +68,9 @@
 | 
			
		||||
            }
 | 
			
		||||
        },
 | 
			
		||||
        "node_modules/@eslint/js": {
 | 
			
		||||
            "version": "8.35.0",
 | 
			
		||||
            "resolved": "https://registry.npmmirror.com/@eslint/js/-/js-8.35.0.tgz",
 | 
			
		||||
            "integrity": "sha512-JXdzbRiWclLVoD8sNUjR443VVlYqiYmDVT6rGUEIEHU5YJW0gaVZwV2xgM7D4arkvASqD0IlLUVjHiFuxaftRw==",
 | 
			
		||||
            "version": "8.37.0",
 | 
			
		||||
            "resolved": "https://registry.npmmirror.com/@eslint/js/-/js-8.37.0.tgz",
 | 
			
		||||
            "integrity": "sha512-x5vzdtOOGgFVDCUs81QRB2+liax8rFg3+7hqM+QhBG0/G3F1ZsoYl97UrqgHgQ9KKT7G6c4V+aTUCgu/n22v1A==",
 | 
			
		||||
            "dev": true,
 | 
			
		||||
            "engines": {
 | 
			
		||||
                "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
 | 
			
		||||
@@ -134,19 +159,19 @@
 | 
			
		||||
            "dev": true
 | 
			
		||||
        },
 | 
			
		||||
        "node_modules/@typescript-eslint/eslint-plugin": {
 | 
			
		||||
            "version": "5.54.0",
 | 
			
		||||
            "resolved": "https://registry.npmmirror.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.54.0.tgz",
 | 
			
		||||
            "integrity": "sha512-+hSN9BdSr629RF02d7mMtXhAJvDTyCbprNYJKrXETlul/Aml6YZwd90XioVbjejQeHbb3R8Dg0CkRgoJDxo8aw==",
 | 
			
		||||
            "version": "5.57.0",
 | 
			
		||||
            "resolved": "https://registry.npmmirror.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.57.0.tgz",
 | 
			
		||||
            "integrity": "sha512-itag0qpN6q2UMM6Xgk6xoHa0D0/P+M17THnr4SVgqn9Rgam5k/He33MA7/D7QoJcdMxHFyX7U9imaBonAX/6qA==",
 | 
			
		||||
            "dev": true,
 | 
			
		||||
            "dependencies": {
 | 
			
		||||
                "@typescript-eslint/scope-manager": "5.54.0",
 | 
			
		||||
                "@typescript-eslint/type-utils": "5.54.0",
 | 
			
		||||
                "@typescript-eslint/utils": "5.54.0",
 | 
			
		||||
                "@eslint-community/regexpp": "^4.4.0",
 | 
			
		||||
                "@typescript-eslint/scope-manager": "5.57.0",
 | 
			
		||||
                "@typescript-eslint/type-utils": "5.57.0",
 | 
			
		||||
                "@typescript-eslint/utils": "5.57.0",
 | 
			
		||||
                "debug": "^4.3.4",
 | 
			
		||||
                "grapheme-splitter": "^1.0.4",
 | 
			
		||||
                "ignore": "^5.2.0",
 | 
			
		||||
                "natural-compare-lite": "^1.4.0",
 | 
			
		||||
                "regexpp": "^3.2.0",
 | 
			
		||||
                "semver": "^7.3.7",
 | 
			
		||||
                "tsutils": "^3.21.0"
 | 
			
		||||
            },
 | 
			
		||||
@@ -164,14 +189,14 @@
 | 
			
		||||
            }
 | 
			
		||||
        },
 | 
			
		||||
        "node_modules/@typescript-eslint/parser": {
 | 
			
		||||
            "version": "5.54.0",
 | 
			
		||||
            "resolved": "https://registry.npmmirror.com/@typescript-eslint/parser/-/parser-5.54.0.tgz",
 | 
			
		||||
            "integrity": "sha512-aAVL3Mu2qTi+h/r04WI/5PfNWvO6pdhpeMRWk9R7rEV4mwJNzoWf5CCU5vDKBsPIFQFjEq1xg7XBI2rjiMXQbQ==",
 | 
			
		||||
            "version": "5.57.0",
 | 
			
		||||
            "resolved": "https://registry.npmmirror.com/@typescript-eslint/parser/-/parser-5.57.0.tgz",
 | 
			
		||||
            "integrity": "sha512-orrduvpWYkgLCyAdNtR1QIWovcNZlEm6yL8nwH/eTxWLd8gsP+25pdLHYzL2QdkqrieaDwLpytHqycncv0woUQ==",
 | 
			
		||||
            "dev": true,
 | 
			
		||||
            "dependencies": {
 | 
			
		||||
                "@typescript-eslint/scope-manager": "5.54.0",
 | 
			
		||||
                "@typescript-eslint/types": "5.54.0",
 | 
			
		||||
                "@typescript-eslint/typescript-estree": "5.54.0",
 | 
			
		||||
                "@typescript-eslint/scope-manager": "5.57.0",
 | 
			
		||||
                "@typescript-eslint/types": "5.57.0",
 | 
			
		||||
                "@typescript-eslint/typescript-estree": "5.57.0",
 | 
			
		||||
                "debug": "^4.3.4"
 | 
			
		||||
            },
 | 
			
		||||
            "engines": {
 | 
			
		||||
@@ -187,26 +212,26 @@
 | 
			
		||||
            }
 | 
			
		||||
        },
 | 
			
		||||
        "node_modules/@typescript-eslint/scope-manager": {
 | 
			
		||||
            "version": "5.54.0",
 | 
			
		||||
            "resolved": "https://registry.npmmirror.com/@typescript-eslint/scope-manager/-/scope-manager-5.54.0.tgz",
 | 
			
		||||
            "integrity": "sha512-VTPYNZ7vaWtYna9M4oD42zENOBrb+ZYyCNdFs949GcN8Miwn37b8b7eMj+EZaq7VK9fx0Jd+JhmkhjFhvnovhg==",
 | 
			
		||||
            "version": "5.57.0",
 | 
			
		||||
            "resolved": "https://registry.npmmirror.com/@typescript-eslint/scope-manager/-/scope-manager-5.57.0.tgz",
 | 
			
		||||
            "integrity": "sha512-NANBNOQvllPlizl9LatX8+MHi7bx7WGIWYjPHDmQe5Si/0YEYfxSljJpoTyTWFTgRy3X8gLYSE4xQ2U+aCozSw==",
 | 
			
		||||
            "dev": true,
 | 
			
		||||
            "dependencies": {
 | 
			
		||||
                "@typescript-eslint/types": "5.54.0",
 | 
			
		||||
                "@typescript-eslint/visitor-keys": "5.54.0"
 | 
			
		||||
                "@typescript-eslint/types": "5.57.0",
 | 
			
		||||
                "@typescript-eslint/visitor-keys": "5.57.0"
 | 
			
		||||
            },
 | 
			
		||||
            "engines": {
 | 
			
		||||
                "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
 | 
			
		||||
            }
 | 
			
		||||
        },
 | 
			
		||||
        "node_modules/@typescript-eslint/type-utils": {
 | 
			
		||||
            "version": "5.54.0",
 | 
			
		||||
            "resolved": "https://registry.npmmirror.com/@typescript-eslint/type-utils/-/type-utils-5.54.0.tgz",
 | 
			
		||||
            "integrity": "sha512-WI+WMJ8+oS+LyflqsD4nlXMsVdzTMYTxl16myXPaCXnSgc7LWwMsjxQFZCK/rVmTZ3FN71Ct78ehO9bRC7erYQ==",
 | 
			
		||||
            "version": "5.57.0",
 | 
			
		||||
            "resolved": "https://registry.npmmirror.com/@typescript-eslint/type-utils/-/type-utils-5.57.0.tgz",
 | 
			
		||||
            "integrity": "sha512-kxXoq9zOTbvqzLbdNKy1yFrxLC6GDJFE2Yuo3KqSwTmDOFjUGeWSakgoXT864WcK5/NAJkkONCiKb1ddsqhLXQ==",
 | 
			
		||||
            "dev": true,
 | 
			
		||||
            "dependencies": {
 | 
			
		||||
                "@typescript-eslint/typescript-estree": "5.54.0",
 | 
			
		||||
                "@typescript-eslint/utils": "5.54.0",
 | 
			
		||||
                "@typescript-eslint/typescript-estree": "5.57.0",
 | 
			
		||||
                "@typescript-eslint/utils": "5.57.0",
 | 
			
		||||
                "debug": "^4.3.4",
 | 
			
		||||
                "tsutils": "^3.21.0"
 | 
			
		||||
            },
 | 
			
		||||
@@ -223,22 +248,22 @@
 | 
			
		||||
            }
 | 
			
		||||
        },
 | 
			
		||||
        "node_modules/@typescript-eslint/types": {
 | 
			
		||||
            "version": "5.54.0",
 | 
			
		||||
            "resolved": "https://registry.npmmirror.com/@typescript-eslint/types/-/types-5.54.0.tgz",
 | 
			
		||||
            "integrity": "sha512-nExy+fDCBEgqblasfeE3aQ3NuafBUxZxgxXcYfzYRZFHdVvk5q60KhCSkG0noHgHRo/xQ/BOzURLZAafFpTkmQ==",
 | 
			
		||||
            "version": "5.57.0",
 | 
			
		||||
            "resolved": "https://registry.npmmirror.com/@typescript-eslint/types/-/types-5.57.0.tgz",
 | 
			
		||||
            "integrity": "sha512-mxsod+aZRSyLT+jiqHw1KK6xrANm19/+VFALVFP5qa/aiJnlP38qpyaTd0fEKhWvQk6YeNZ5LGwI1pDpBRBhtQ==",
 | 
			
		||||
            "dev": true,
 | 
			
		||||
            "engines": {
 | 
			
		||||
                "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
 | 
			
		||||
            }
 | 
			
		||||
        },
 | 
			
		||||
        "node_modules/@typescript-eslint/typescript-estree": {
 | 
			
		||||
            "version": "5.54.0",
 | 
			
		||||
            "resolved": "https://registry.npmmirror.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.54.0.tgz",
 | 
			
		||||
            "integrity": "sha512-X2rJG97Wj/VRo5YxJ8Qx26Zqf0RRKsVHd4sav8NElhbZzhpBI8jU54i6hfo9eheumj4oO4dcRN1B/zIVEqR/MQ==",
 | 
			
		||||
            "version": "5.57.0",
 | 
			
		||||
            "resolved": "https://registry.npmmirror.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.57.0.tgz",
 | 
			
		||||
            "integrity": "sha512-LTzQ23TV82KpO8HPnWuxM2V7ieXW8O142I7hQTxWIHDcCEIjtkat6H96PFkYBQqGFLW/G/eVVOB9Z8rcvdY/Vw==",
 | 
			
		||||
            "dev": true,
 | 
			
		||||
            "dependencies": {
 | 
			
		||||
                "@typescript-eslint/types": "5.54.0",
 | 
			
		||||
                "@typescript-eslint/visitor-keys": "5.54.0",
 | 
			
		||||
                "@typescript-eslint/types": "5.57.0",
 | 
			
		||||
                "@typescript-eslint/visitor-keys": "5.57.0",
 | 
			
		||||
                "debug": "^4.3.4",
 | 
			
		||||
                "globby": "^11.1.0",
 | 
			
		||||
                "is-glob": "^4.0.3",
 | 
			
		||||
@@ -255,18 +280,18 @@
 | 
			
		||||
            }
 | 
			
		||||
        },
 | 
			
		||||
        "node_modules/@typescript-eslint/utils": {
 | 
			
		||||
            "version": "5.54.0",
 | 
			
		||||
            "resolved": "https://registry.npmmirror.com/@typescript-eslint/utils/-/utils-5.54.0.tgz",
 | 
			
		||||
            "integrity": "sha512-cuwm8D/Z/7AuyAeJ+T0r4WZmlnlxQ8wt7C7fLpFlKMR+dY6QO79Cq1WpJhvZbMA4ZeZGHiRWnht7ZJ8qkdAunw==",
 | 
			
		||||
            "version": "5.57.0",
 | 
			
		||||
            "resolved": "https://registry.npmmirror.com/@typescript-eslint/utils/-/utils-5.57.0.tgz",
 | 
			
		||||
            "integrity": "sha512-ps/4WohXV7C+LTSgAL5CApxvxbMkl9B9AUZRtnEFonpIxZDIT7wC1xfvuJONMidrkB9scs4zhtRyIwHh4+18kw==",
 | 
			
		||||
            "dev": true,
 | 
			
		||||
            "dependencies": {
 | 
			
		||||
                "@eslint-community/eslint-utils": "^4.2.0",
 | 
			
		||||
                "@types/json-schema": "^7.0.9",
 | 
			
		||||
                "@types/semver": "^7.3.12",
 | 
			
		||||
                "@typescript-eslint/scope-manager": "5.54.0",
 | 
			
		||||
                "@typescript-eslint/types": "5.54.0",
 | 
			
		||||
                "@typescript-eslint/typescript-estree": "5.54.0",
 | 
			
		||||
                "@typescript-eslint/scope-manager": "5.57.0",
 | 
			
		||||
                "@typescript-eslint/types": "5.57.0",
 | 
			
		||||
                "@typescript-eslint/typescript-estree": "5.57.0",
 | 
			
		||||
                "eslint-scope": "^5.1.1",
 | 
			
		||||
                "eslint-utils": "^3.0.0",
 | 
			
		||||
                "semver": "^7.3.7"
 | 
			
		||||
            },
 | 
			
		||||
            "engines": {
 | 
			
		||||
@@ -277,12 +302,12 @@
 | 
			
		||||
            }
 | 
			
		||||
        },
 | 
			
		||||
        "node_modules/@typescript-eslint/visitor-keys": {
 | 
			
		||||
            "version": "5.54.0",
 | 
			
		||||
            "resolved": "https://registry.npmmirror.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.54.0.tgz",
 | 
			
		||||
            "integrity": "sha512-xu4wT7aRCakGINTLGeyGqDn+78BwFlggwBjnHa1ar/KaGagnmwLYmlrXIrgAaQ3AE1Vd6nLfKASm7LrFHNbKGA==",
 | 
			
		||||
            "version": "5.57.0",
 | 
			
		||||
            "resolved": "https://registry.npmmirror.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.57.0.tgz",
 | 
			
		||||
            "integrity": "sha512-ery2g3k0hv5BLiKpPuwYt9KBkAp2ugT6VvyShXdLOkax895EC55sP0Tx5L0fZaQueiK3fBLvHVvEl3jFS5ia+g==",
 | 
			
		||||
            "dev": true,
 | 
			
		||||
            "dependencies": {
 | 
			
		||||
                "@typescript-eslint/types": "5.54.0",
 | 
			
		||||
                "@typescript-eslint/types": "5.57.0",
 | 
			
		||||
                "eslint-visitor-keys": "^3.3.0"
 | 
			
		||||
            },
 | 
			
		||||
            "engines": {
 | 
			
		||||
@@ -434,6 +459,12 @@
 | 
			
		||||
            "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==",
 | 
			
		||||
            "dev": true
 | 
			
		||||
        },
 | 
			
		||||
        "node_modules/boolbase": {
 | 
			
		||||
            "version": "1.0.0",
 | 
			
		||||
            "resolved": "https://registry.npmmirror.com/boolbase/-/boolbase-1.0.0.tgz",
 | 
			
		||||
            "integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==",
 | 
			
		||||
            "dev": true
 | 
			
		||||
        },
 | 
			
		||||
        "node_modules/brace-expansion": {
 | 
			
		||||
            "version": "1.1.11",
 | 
			
		||||
            "resolved": "https://registry.npmmirror.com/brace-expansion/-/brace-expansion-1.1.11.tgz",
 | 
			
		||||
@@ -546,6 +577,18 @@
 | 
			
		||||
                "node": ">= 8"
 | 
			
		||||
            }
 | 
			
		||||
        },
 | 
			
		||||
        "node_modules/cssesc": {
 | 
			
		||||
            "version": "3.0.0",
 | 
			
		||||
            "resolved": "https://registry.npmmirror.com/cssesc/-/cssesc-3.0.0.tgz",
 | 
			
		||||
            "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==",
 | 
			
		||||
            "dev": true,
 | 
			
		||||
            "bin": {
 | 
			
		||||
                "cssesc": "bin/cssesc"
 | 
			
		||||
            },
 | 
			
		||||
            "engines": {
 | 
			
		||||
                "node": ">=4"
 | 
			
		||||
            }
 | 
			
		||||
        },
 | 
			
		||||
        "node_modules/debug": {
 | 
			
		||||
            "version": "4.3.4",
 | 
			
		||||
            "resolved": "https://registry.npmmirror.com/debug/-/debug-4.3.4.tgz",
 | 
			
		||||
@@ -705,13 +748,15 @@
 | 
			
		||||
            }
 | 
			
		||||
        },
 | 
			
		||||
        "node_modules/eslint": {
 | 
			
		||||
            "version": "8.35.0",
 | 
			
		||||
            "resolved": "https://registry.npmmirror.com/eslint/-/eslint-8.35.0.tgz",
 | 
			
		||||
            "integrity": "sha512-BxAf1fVL7w+JLRQhWl2pzGeSiGqbWumV4WNvc9Rhp6tiCtm4oHnyPBSEtMGZwrQgudFQ+otqzWoPB7x+hxoWsw==",
 | 
			
		||||
            "version": "8.37.0",
 | 
			
		||||
            "resolved": "https://registry.npmmirror.com/eslint/-/eslint-8.37.0.tgz",
 | 
			
		||||
            "integrity": "sha512-NU3Ps9nI05GUoVMxcZx1J8CNR6xOvUT4jAUMH5+z8lpp3aEdPVCImKw6PWG4PY+Vfkpr+jvMpxs/qoE7wq0sPw==",
 | 
			
		||||
            "dev": true,
 | 
			
		||||
            "dependencies": {
 | 
			
		||||
                "@eslint/eslintrc": "^2.0.0",
 | 
			
		||||
                "@eslint/js": "8.35.0",
 | 
			
		||||
                "@eslint-community/eslint-utils": "^4.2.0",
 | 
			
		||||
                "@eslint-community/regexpp": "^4.4.0",
 | 
			
		||||
                "@eslint/eslintrc": "^2.0.2",
 | 
			
		||||
                "@eslint/js": "8.37.0",
 | 
			
		||||
                "@humanwhocodes/config-array": "^0.11.8",
 | 
			
		||||
                "@humanwhocodes/module-importer": "^1.0.1",
 | 
			
		||||
                "@nodelib/fs.walk": "^1.2.8",
 | 
			
		||||
@@ -722,9 +767,8 @@
 | 
			
		||||
                "doctrine": "^3.0.0",
 | 
			
		||||
                "escape-string-regexp": "^4.0.0",
 | 
			
		||||
                "eslint-scope": "^7.1.1",
 | 
			
		||||
                "eslint-utils": "^3.0.0",
 | 
			
		||||
                "eslint-visitor-keys": "^3.3.0",
 | 
			
		||||
                "espree": "^9.4.0",
 | 
			
		||||
                "eslint-visitor-keys": "^3.4.0",
 | 
			
		||||
                "espree": "^9.5.1",
 | 
			
		||||
                "esquery": "^1.4.2",
 | 
			
		||||
                "esutils": "^2.0.2",
 | 
			
		||||
                "fast-deep-equal": "^3.1.3",
 | 
			
		||||
@@ -746,7 +790,6 @@
 | 
			
		||||
                "minimatch": "^3.1.2",
 | 
			
		||||
                "natural-compare": "^1.4.0",
 | 
			
		||||
                "optionator": "^0.9.1",
 | 
			
		||||
                "regexpp": "^3.2.0",
 | 
			
		||||
                "strip-ansi": "^6.0.1",
 | 
			
		||||
                "strip-json-comments": "^3.1.0",
 | 
			
		||||
                "text-table": "^0.2.0"
 | 
			
		||||
@@ -771,16 +814,16 @@
 | 
			
		||||
            }
 | 
			
		||||
        },
 | 
			
		||||
        "node_modules/eslint-config-standard-with-typescript": {
 | 
			
		||||
            "version": "34.0.0",
 | 
			
		||||
            "resolved": "https://registry.npmmirror.com/eslint-config-standard-with-typescript/-/eslint-config-standard-with-typescript-34.0.0.tgz",
 | 
			
		||||
            "integrity": "sha512-zhCsI4/A0rJ1ma8sf3RLXYc0gc7yPmdTWRVXMh9dtqeUx3yBQyALH0wosHhk1uQ9QyItynLdNOtcHKNw8G7lQw==",
 | 
			
		||||
            "version": "34.0.1",
 | 
			
		||||
            "resolved": "https://registry.npmmirror.com/eslint-config-standard-with-typescript/-/eslint-config-standard-with-typescript-34.0.1.tgz",
 | 
			
		||||
            "integrity": "sha512-J7WvZeLtd0Vr9F+v4dZbqJCLD16cbIy4U+alJMq4MiXdpipdBM3U5NkXaGUjePc4sb1ZE01U9g6VuTBpHHz1fg==",
 | 
			
		||||
            "dev": true,
 | 
			
		||||
            "dependencies": {
 | 
			
		||||
                "@typescript-eslint/parser": "^5.0.0",
 | 
			
		||||
                "@typescript-eslint/parser": "^5.43.0",
 | 
			
		||||
                "eslint-config-standard": "17.0.0"
 | 
			
		||||
            },
 | 
			
		||||
            "peerDependencies": {
 | 
			
		||||
                "@typescript-eslint/eslint-plugin": "^5.0.0",
 | 
			
		||||
                "@typescript-eslint/eslint-plugin": "^5.43.0",
 | 
			
		||||
                "eslint": "^8.0.1",
 | 
			
		||||
                "eslint-plugin-import": "^2.25.2",
 | 
			
		||||
                "eslint-plugin-n": "^15.0.0",
 | 
			
		||||
@@ -931,9 +974,9 @@
 | 
			
		||||
            }
 | 
			
		||||
        },
 | 
			
		||||
        "node_modules/eslint-plugin-n": {
 | 
			
		||||
            "version": "15.6.1",
 | 
			
		||||
            "resolved": "https://registry.npmmirror.com/eslint-plugin-n/-/eslint-plugin-n-15.6.1.tgz",
 | 
			
		||||
            "integrity": "sha512-R9xw9OtCRxxaxaszTQmQAlPgM+RdGjaL1akWuY/Fv9fRAi8Wj4CUKc6iYVG8QNRjRuo8/BqVYIpfqberJUEacA==",
 | 
			
		||||
            "version": "15.7.0",
 | 
			
		||||
            "resolved": "https://registry.npmmirror.com/eslint-plugin-n/-/eslint-plugin-n-15.7.0.tgz",
 | 
			
		||||
            "integrity": "sha512-jDex9s7D/Qial8AGVIHq4W7NswpUD5DPDL2RH8Lzd9EloWUuvUkHfv4FRLMipH5q2UtyurorBkPeNi1wVWNh3Q==",
 | 
			
		||||
            "dev": true,
 | 
			
		||||
            "dependencies": {
 | 
			
		||||
                "builtins": "^5.0.1",
 | 
			
		||||
@@ -964,6 +1007,27 @@
 | 
			
		||||
                "eslint": "^7.0.0 || ^8.0.0"
 | 
			
		||||
            }
 | 
			
		||||
        },
 | 
			
		||||
        "node_modules/eslint-plugin-vue": {
 | 
			
		||||
            "version": "9.10.0",
 | 
			
		||||
            "resolved": "https://registry.npmmirror.com/eslint-plugin-vue/-/eslint-plugin-vue-9.10.0.tgz",
 | 
			
		||||
            "integrity": "sha512-2MgP31OBf8YilUvtakdVMc8xVbcMp7z7/iQj8LHVpXrSXHPXSJRUIGSPFI6b6pyCx/buKaFJ45ycqfHvQRiW2g==",
 | 
			
		||||
            "dev": true,
 | 
			
		||||
            "dependencies": {
 | 
			
		||||
                "@eslint-community/eslint-utils": "^4.3.0",
 | 
			
		||||
                "natural-compare": "^1.4.0",
 | 
			
		||||
                "nth-check": "^2.0.1",
 | 
			
		||||
                "postcss-selector-parser": "^6.0.9",
 | 
			
		||||
                "semver": "^7.3.5",
 | 
			
		||||
                "vue-eslint-parser": "^9.0.1",
 | 
			
		||||
                "xml-name-validator": "^4.0.0"
 | 
			
		||||
            },
 | 
			
		||||
            "engines": {
 | 
			
		||||
                "node": "^14.17.0 || >=16.0.0"
 | 
			
		||||
            },
 | 
			
		||||
            "peerDependencies": {
 | 
			
		||||
                "eslint": "^6.2.0 || ^7.0.0 || ^8.0.0"
 | 
			
		||||
            }
 | 
			
		||||
        },
 | 
			
		||||
        "node_modules/eslint-scope": {
 | 
			
		||||
            "version": "5.1.1",
 | 
			
		||||
            "resolved": "https://registry.npmmirror.com/eslint-scope/-/eslint-scope-5.1.1.tgz",
 | 
			
		||||
@@ -1002,9 +1066,9 @@
 | 
			
		||||
            }
 | 
			
		||||
        },
 | 
			
		||||
        "node_modules/eslint-visitor-keys": {
 | 
			
		||||
            "version": "3.3.0",
 | 
			
		||||
            "resolved": "https://registry.npmmirror.com/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz",
 | 
			
		||||
            "integrity": "sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==",
 | 
			
		||||
            "version": "3.4.0",
 | 
			
		||||
            "resolved": "https://registry.npmmirror.com/eslint-visitor-keys/-/eslint-visitor-keys-3.4.0.tgz",
 | 
			
		||||
            "integrity": "sha512-HPpKPUBQcAsZOsHAFwTtIKcYlCje62XB7SEAcxjtmW6TD1WVpkS6i6/hOVtTZIl4zGj/mBqpFVGvaDneik+VoQ==",
 | 
			
		||||
            "dev": true,
 | 
			
		||||
            "engines": {
 | 
			
		||||
                "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
 | 
			
		||||
@@ -1033,14 +1097,14 @@
 | 
			
		||||
            }
 | 
			
		||||
        },
 | 
			
		||||
        "node_modules/espree": {
 | 
			
		||||
            "version": "9.4.1",
 | 
			
		||||
            "resolved": "https://registry.npmmirror.com/espree/-/espree-9.4.1.tgz",
 | 
			
		||||
            "integrity": "sha512-XwctdmTO6SIvCzd9810yyNzIrOrqNYV9Koizx4C/mRhf9uq0o4yHoCEU/670pOxOL/MSraektvSAji79kX90Vg==",
 | 
			
		||||
            "version": "9.5.1",
 | 
			
		||||
            "resolved": "https://registry.npmmirror.com/espree/-/espree-9.5.1.tgz",
 | 
			
		||||
            "integrity": "sha512-5yxtHSZXRSW5pvv3hAlXM5+/Oswi1AUFqBmbibKb5s6bp3rGIDkyXU6xCoyuuLhijr4SFwPrXRoZjz0AZDN9tg==",
 | 
			
		||||
            "dev": true,
 | 
			
		||||
            "dependencies": {
 | 
			
		||||
                "acorn": "^8.8.0",
 | 
			
		||||
                "acorn-jsx": "^5.3.2",
 | 
			
		||||
                "eslint-visitor-keys": "^3.3.0"
 | 
			
		||||
                "eslint-visitor-keys": "^3.4.0"
 | 
			
		||||
            },
 | 
			
		||||
            "engines": {
 | 
			
		||||
                "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
 | 
			
		||||
@@ -1788,6 +1852,12 @@
 | 
			
		||||
                "node": ">=10"
 | 
			
		||||
            }
 | 
			
		||||
        },
 | 
			
		||||
        "node_modules/lodash": {
 | 
			
		||||
            "version": "4.17.21",
 | 
			
		||||
            "resolved": "https://registry.npmmirror.com/lodash/-/lodash-4.17.21.tgz",
 | 
			
		||||
            "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==",
 | 
			
		||||
            "dev": true
 | 
			
		||||
        },
 | 
			
		||||
        "node_modules/lodash.merge": {
 | 
			
		||||
            "version": "4.6.2",
 | 
			
		||||
            "resolved": "https://registry.npmmirror.com/lodash.merge/-/lodash.merge-4.6.2.tgz",
 | 
			
		||||
@@ -1883,6 +1953,15 @@
 | 
			
		||||
            "integrity": "sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==",
 | 
			
		||||
            "dev": true
 | 
			
		||||
        },
 | 
			
		||||
        "node_modules/nth-check": {
 | 
			
		||||
            "version": "2.1.1",
 | 
			
		||||
            "resolved": "https://registry.npmmirror.com/nth-check/-/nth-check-2.1.1.tgz",
 | 
			
		||||
            "integrity": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==",
 | 
			
		||||
            "dev": true,
 | 
			
		||||
            "dependencies": {
 | 
			
		||||
                "boolbase": "^1.0.0"
 | 
			
		||||
            }
 | 
			
		||||
        },
 | 
			
		||||
        "node_modules/object-inspect": {
 | 
			
		||||
            "version": "1.12.3",
 | 
			
		||||
            "resolved": "https://registry.npmmirror.com/object-inspect/-/object-inspect-1.12.3.tgz",
 | 
			
		||||
@@ -2040,6 +2119,19 @@
 | 
			
		||||
                "node": ">=8.6"
 | 
			
		||||
            }
 | 
			
		||||
        },
 | 
			
		||||
        "node_modules/postcss-selector-parser": {
 | 
			
		||||
            "version": "6.0.11",
 | 
			
		||||
            "resolved": "https://registry.npmmirror.com/postcss-selector-parser/-/postcss-selector-parser-6.0.11.tgz",
 | 
			
		||||
            "integrity": "sha512-zbARubNdogI9j7WY4nQJBiNqQf3sLS3wCP4WfOidu+p28LofJqDH1tcXypGrcmMHhDk2t9wGhCsYe/+szLTy1g==",
 | 
			
		||||
            "dev": true,
 | 
			
		||||
            "dependencies": {
 | 
			
		||||
                "cssesc": "^3.0.0",
 | 
			
		||||
                "util-deprecate": "^1.0.2"
 | 
			
		||||
            },
 | 
			
		||||
            "engines": {
 | 
			
		||||
                "node": ">=4"
 | 
			
		||||
            }
 | 
			
		||||
        },
 | 
			
		||||
        "node_modules/prelude-ls": {
 | 
			
		||||
            "version": "1.2.1",
 | 
			
		||||
            "resolved": "https://registry.npmmirror.com/prelude-ls/-/prelude-ls-1.2.1.tgz",
 | 
			
		||||
@@ -2370,16 +2462,16 @@
 | 
			
		||||
            }
 | 
			
		||||
        },
 | 
			
		||||
        "node_modules/typescript": {
 | 
			
		||||
            "version": "4.9.5",
 | 
			
		||||
            "resolved": "https://registry.npmmirror.com/typescript/-/typescript-4.9.5.tgz",
 | 
			
		||||
            "integrity": "sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==",
 | 
			
		||||
            "version": "5.0.3",
 | 
			
		||||
            "resolved": "https://registry.npmmirror.com/typescript/-/typescript-5.0.3.tgz",
 | 
			
		||||
            "integrity": "sha512-xv8mOEDnigb/tN9PSMTwSEqAnUvkoXMQlicOb0IUVDBSQCgBSaAAROUZYy2IcUy5qU6XajK5jjjO7TMWqBTKZA==",
 | 
			
		||||
            "dev": true,
 | 
			
		||||
            "bin": {
 | 
			
		||||
                "tsc": "bin/tsc",
 | 
			
		||||
                "tsserver": "bin/tsserver"
 | 
			
		||||
            },
 | 
			
		||||
            "engines": {
 | 
			
		||||
                "node": ">=4.2.0"
 | 
			
		||||
                "node": ">=12.20"
 | 
			
		||||
            }
 | 
			
		||||
        },
 | 
			
		||||
        "node_modules/unbox-primitive": {
 | 
			
		||||
@@ -2403,6 +2495,55 @@
 | 
			
		||||
                "punycode": "^2.1.0"
 | 
			
		||||
            }
 | 
			
		||||
        },
 | 
			
		||||
        "node_modules/util-deprecate": {
 | 
			
		||||
            "version": "1.0.2",
 | 
			
		||||
            "resolved": "https://registry.npmmirror.com/util-deprecate/-/util-deprecate-1.0.2.tgz",
 | 
			
		||||
            "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==",
 | 
			
		||||
            "dev": true
 | 
			
		||||
        },
 | 
			
		||||
        "node_modules/vue-eslint-parser": {
 | 
			
		||||
            "version": "9.1.1",
 | 
			
		||||
            "resolved": "https://registry.npmmirror.com/vue-eslint-parser/-/vue-eslint-parser-9.1.1.tgz",
 | 
			
		||||
            "integrity": "sha512-C2aI/r85Q6tYcz4dpgvrs4wH/MqVrRAVIdpYedrxnATDHHkb+TroeRcDpKWGZCx/OcECMWfz7tVwQ8e+Opy6rA==",
 | 
			
		||||
            "dev": true,
 | 
			
		||||
            "dependencies": {
 | 
			
		||||
                "debug": "^4.3.4",
 | 
			
		||||
                "eslint-scope": "^7.1.1",
 | 
			
		||||
                "eslint-visitor-keys": "^3.3.0",
 | 
			
		||||
                "espree": "^9.3.1",
 | 
			
		||||
                "esquery": "^1.4.0",
 | 
			
		||||
                "lodash": "^4.17.21",
 | 
			
		||||
                "semver": "^7.3.6"
 | 
			
		||||
            },
 | 
			
		||||
            "engines": {
 | 
			
		||||
                "node": "^14.17.0 || >=16.0.0"
 | 
			
		||||
            },
 | 
			
		||||
            "peerDependencies": {
 | 
			
		||||
                "eslint": ">=6.0.0"
 | 
			
		||||
            }
 | 
			
		||||
        },
 | 
			
		||||
        "node_modules/vue-eslint-parser/node_modules/eslint-scope": {
 | 
			
		||||
            "version": "7.1.1",
 | 
			
		||||
            "resolved": "https://registry.npmmirror.com/eslint-scope/-/eslint-scope-7.1.1.tgz",
 | 
			
		||||
            "integrity": "sha512-QKQM/UXpIiHcLqJ5AOyIW7XZmzjkzQXYE54n1++wb0u9V/abW3l9uQnxX8Z5Xd18xyKIMTUAyQ0k1e8pz6LUrw==",
 | 
			
		||||
            "dev": true,
 | 
			
		||||
            "dependencies": {
 | 
			
		||||
                "esrecurse": "^4.3.0",
 | 
			
		||||
                "estraverse": "^5.2.0"
 | 
			
		||||
            },
 | 
			
		||||
            "engines": {
 | 
			
		||||
                "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
 | 
			
		||||
            }
 | 
			
		||||
        },
 | 
			
		||||
        "node_modules/vue-eslint-parser/node_modules/estraverse": {
 | 
			
		||||
            "version": "5.3.0",
 | 
			
		||||
            "resolved": "https://registry.npmmirror.com/estraverse/-/estraverse-5.3.0.tgz",
 | 
			
		||||
            "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==",
 | 
			
		||||
            "dev": true,
 | 
			
		||||
            "engines": {
 | 
			
		||||
                "node": ">=4.0"
 | 
			
		||||
            }
 | 
			
		||||
        },
 | 
			
		||||
        "node_modules/which": {
 | 
			
		||||
            "version": "2.0.2",
 | 
			
		||||
            "resolved": "https://registry.npmmirror.com/which/-/which-2.0.2.tgz",
 | 
			
		||||
@@ -2463,6 +2604,15 @@
 | 
			
		||||
            "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==",
 | 
			
		||||
            "dev": true
 | 
			
		||||
        },
 | 
			
		||||
        "node_modules/xml-name-validator": {
 | 
			
		||||
            "version": "4.0.0",
 | 
			
		||||
            "resolved": "https://registry.npmmirror.com/xml-name-validator/-/xml-name-validator-4.0.0.tgz",
 | 
			
		||||
            "integrity": "sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==",
 | 
			
		||||
            "dev": true,
 | 
			
		||||
            "engines": {
 | 
			
		||||
                "node": ">=12"
 | 
			
		||||
            }
 | 
			
		||||
        },
 | 
			
		||||
        "node_modules/yallist": {
 | 
			
		||||
            "version": "4.0.0",
 | 
			
		||||
            "resolved": "https://registry.npmmirror.com/yallist/-/yallist-4.0.0.tgz",
 | 
			
		||||
 
 | 
			
		||||
@@ -9,17 +9,17 @@
 | 
			
		||||
    "author": "Kane",
 | 
			
		||||
    "license": "ISC",
 | 
			
		||||
    "devDependencies": {
 | 
			
		||||
        "@typescript-eslint/eslint-plugin": "^5.54.0",
 | 
			
		||||
        "@typescript-eslint/parser": "^5.54.0",
 | 
			
		||||
        "eslint": "^8.35.0",
 | 
			
		||||
        "eslint-config-standard-with-typescript": "^34.0.0",
 | 
			
		||||
        "eslint-plugin-vue": "^9.10.0",
 | 
			
		||||
        "@typescript-eslint/eslint-plugin": "^5.57.0",
 | 
			
		||||
        "@typescript-eslint/parser": "^5.57.0",
 | 
			
		||||
        "eslint": "^8.37.0",
 | 
			
		||||
        "eslint-config-standard-with-typescript": "^34.0.1",
 | 
			
		||||
        "eslint-plugin-import": "^2.27.5",
 | 
			
		||||
        "eslint-plugin-n": "^15.6.1",
 | 
			
		||||
        "eslint-plugin-n": "^15.7.0",
 | 
			
		||||
        "eslint-plugin-promise": "^6.1.1",
 | 
			
		||||
        "typescript": "^4.9.5"
 | 
			
		||||
        "typescript": "^5.0.3"
 | 
			
		||||
    },
 | 
			
		||||
    "dependencies": {
 | 
			
		||||
        "axios": "^1.3.4"
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -8,7 +8,7 @@
 | 
			
		||||
 * Copyright (c) ${2022} by Kane, All Rights Reserved.
 | 
			
		||||
 */
 | 
			
		||||
 | 
			
		||||
type K = (number | string);
 | 
			
		||||
type K = (( number | string ));
 | 
			
		||||
type T = string | number | boolean;
 | 
			
		||||
type R = Record<K, T>;
 | 
			
		||||
 | 
			
		||||
@@ -18,3 +18,11 @@ const test: R = {
 | 
			
		||||
    b: true,
 | 
			
		||||
    1: 2,
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
type bingji_A = string | number;
 | 
			
		||||
 | 
			
		||||
const a: bingji_A = "cat";
 | 
			
		||||
 | 
			
		||||
type ArrayA = string | number [];
 | 
			
		||||
 | 
			
		||||
const gainers: Array<string | number | null> = [ "kane", 588, ];
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user