first commit
This commit is contained in:
7
app_vue/node_modules/webpack/schemas/WebpackOptions.check.d.ts
generated
vendored
Normal file
7
app_vue/node_modules/webpack/schemas/WebpackOptions.check.d.ts
generated
vendored
Normal file
@ -0,0 +1,7 @@
|
||||
/*
|
||||
* This file was automatically generated.
|
||||
* DO NOT MODIFY BY HAND.
|
||||
* Run `yarn fix:special` to update
|
||||
*/
|
||||
declare const check: (options: import("../declarations/WebpackOptions").WebpackOptions) => boolean;
|
||||
export = check;
|
6
app_vue/node_modules/webpack/schemas/WebpackOptions.check.js
generated
vendored
Normal file
6
app_vue/node_modules/webpack/schemas/WebpackOptions.check.js
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
6036
app_vue/node_modules/webpack/schemas/WebpackOptions.json
generated
vendored
Normal file
6036
app_vue/node_modules/webpack/schemas/WebpackOptions.json
generated
vendored
Normal file
File diff suppressed because it is too large
Load Diff
155
app_vue/node_modules/webpack/schemas/_container.json
generated
vendored
Normal file
155
app_vue/node_modules/webpack/schemas/_container.json
generated
vendored
Normal file
@ -0,0 +1,155 @@
|
||||
{
|
||||
"definitions": {
|
||||
"Exposes": {
|
||||
"description": "Modules that should be exposed by this container. When provided, property name is used as public name, otherwise public name is automatically inferred from request.",
|
||||
"anyOf": [
|
||||
{
|
||||
"type": "array",
|
||||
"items": {
|
||||
"description": "Modules that should be exposed by this container.",
|
||||
"anyOf": [
|
||||
{
|
||||
"$ref": "#/definitions/ExposesItem"
|
||||
},
|
||||
{
|
||||
"$ref": "#/definitions/ExposesObject"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"$ref": "#/definitions/ExposesObject"
|
||||
}
|
||||
]
|
||||
},
|
||||
"ExposesConfig": {
|
||||
"description": "Advanced configuration for modules that should be exposed by this container.",
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"import": {
|
||||
"description": "Request to a module that should be exposed by this container.",
|
||||
"anyOf": [
|
||||
{
|
||||
"$ref": "#/definitions/ExposesItem"
|
||||
},
|
||||
{
|
||||
"$ref": "#/definitions/ExposesItems"
|
||||
}
|
||||
]
|
||||
},
|
||||
"name": {
|
||||
"description": "Custom chunk name for the exposed module.",
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": ["import"]
|
||||
},
|
||||
"ExposesItem": {
|
||||
"description": "Module that should be exposed by this container.",
|
||||
"type": "string",
|
||||
"minLength": 1
|
||||
},
|
||||
"ExposesItems": {
|
||||
"description": "Modules that should be exposed by this container.",
|
||||
"type": "array",
|
||||
"items": {
|
||||
"$ref": "#/definitions/ExposesItem"
|
||||
}
|
||||
},
|
||||
"ExposesObject": {
|
||||
"description": "Modules that should be exposed by this container. Property names are used as public paths.",
|
||||
"type": "object",
|
||||
"additionalProperties": {
|
||||
"description": "Modules that should be exposed by this container.",
|
||||
"anyOf": [
|
||||
{
|
||||
"$ref": "#/definitions/ExposesConfig"
|
||||
},
|
||||
{
|
||||
"$ref": "#/definitions/ExposesItem"
|
||||
},
|
||||
{
|
||||
"$ref": "#/definitions/ExposesItems"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"Remotes": {
|
||||
"description": "Container locations and request scopes from which modules should be resolved and loaded at runtime. When provided, property name is used as request scope, otherwise request scope is automatically inferred from container location.",
|
||||
"anyOf": [
|
||||
{
|
||||
"type": "array",
|
||||
"items": {
|
||||
"description": "Container locations and request scopes from which modules should be resolved and loaded at runtime.",
|
||||
"anyOf": [
|
||||
{
|
||||
"$ref": "#/definitions/RemotesItem"
|
||||
},
|
||||
{
|
||||
"$ref": "#/definitions/RemotesObject"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"$ref": "#/definitions/RemotesObject"
|
||||
}
|
||||
]
|
||||
},
|
||||
"RemotesConfig": {
|
||||
"description": "Advanced configuration for container locations from which modules should be resolved and loaded at runtime.",
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"external": {
|
||||
"description": "Container locations from which modules should be resolved and loaded at runtime.",
|
||||
"anyOf": [
|
||||
{
|
||||
"$ref": "#/definitions/RemotesItem"
|
||||
},
|
||||
{
|
||||
"$ref": "#/definitions/RemotesItems"
|
||||
}
|
||||
]
|
||||
},
|
||||
"shareScope": {
|
||||
"description": "The name of the share scope shared with this remote.",
|
||||
"type": "string",
|
||||
"minLength": 1
|
||||
}
|
||||
},
|
||||
"required": ["external"]
|
||||
},
|
||||
"RemotesItem": {
|
||||
"description": "Container location from which modules should be resolved and loaded at runtime.",
|
||||
"type": "string",
|
||||
"minLength": 1
|
||||
},
|
||||
"RemotesItems": {
|
||||
"description": "Container locations from which modules should be resolved and loaded at runtime.",
|
||||
"type": "array",
|
||||
"items": {
|
||||
"$ref": "#/definitions/RemotesItem"
|
||||
}
|
||||
},
|
||||
"RemotesObject": {
|
||||
"description": "Container locations from which modules should be resolved and loaded at runtime. Property names are used as request scopes.",
|
||||
"type": "object",
|
||||
"additionalProperties": {
|
||||
"description": "Container locations from which modules should be resolved and loaded at runtime.",
|
||||
"anyOf": [
|
||||
{
|
||||
"$ref": "#/definitions/RemotesConfig"
|
||||
},
|
||||
{
|
||||
"$ref": "#/definitions/RemotesItem"
|
||||
},
|
||||
{
|
||||
"$ref": "#/definitions/RemotesItems"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
118
app_vue/node_modules/webpack/schemas/_sharing.json
generated
vendored
Normal file
118
app_vue/node_modules/webpack/schemas/_sharing.json
generated
vendored
Normal file
@ -0,0 +1,118 @@
|
||||
{
|
||||
"definitions": {
|
||||
"Shared": {
|
||||
"description": "Modules that should be shared in the share scope. When provided, property names are used to match requested modules in this compilation.",
|
||||
"anyOf": [
|
||||
{
|
||||
"type": "array",
|
||||
"items": {
|
||||
"description": "Modules that should be shared in the share scope.",
|
||||
"anyOf": [
|
||||
{
|
||||
"$ref": "#/definitions/SharedItem"
|
||||
},
|
||||
{
|
||||
"$ref": "#/definitions/SharedObject"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"$ref": "#/definitions/SharedObject"
|
||||
}
|
||||
]
|
||||
},
|
||||
"SharedConfig": {
|
||||
"description": "Advanced configuration for modules that should be shared in the share scope.",
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"eager": {
|
||||
"description": "Include the provided and fallback module directly instead behind an async request. This allows to use this shared module in initial load too. All possible shared modules need to be eager too.",
|
||||
"type": "boolean"
|
||||
},
|
||||
"import": {
|
||||
"description": "Provided module that should be provided to share scope. Also acts as fallback module if no shared module is found in share scope or version isn't valid. Defaults to the property name.",
|
||||
"anyOf": [
|
||||
{
|
||||
"description": "No provided or fallback module.",
|
||||
"enum": [false]
|
||||
},
|
||||
{
|
||||
"$ref": "#/definitions/SharedItem"
|
||||
}
|
||||
]
|
||||
},
|
||||
"packageName": {
|
||||
"description": "Package name to determine required version from description file. This is only needed when package name can't be automatically determined from request.",
|
||||
"type": "string",
|
||||
"minLength": 1
|
||||
},
|
||||
"requiredVersion": {
|
||||
"description": "Version requirement from module in share scope.",
|
||||
"anyOf": [
|
||||
{
|
||||
"description": "No version requirement check.",
|
||||
"enum": [false]
|
||||
},
|
||||
{
|
||||
"description": "Version as string. Can be prefixed with '^' or '~' for minimum matches. Each part of the version should be separated by a dot '.'.",
|
||||
"type": "string"
|
||||
}
|
||||
]
|
||||
},
|
||||
"shareKey": {
|
||||
"description": "Module is looked up under this key from the share scope.",
|
||||
"type": "string",
|
||||
"minLength": 1
|
||||
},
|
||||
"shareScope": {
|
||||
"description": "Share scope name.",
|
||||
"type": "string",
|
||||
"minLength": 1
|
||||
},
|
||||
"singleton": {
|
||||
"description": "Allow only a single version of the shared module in share scope (disabled by default).",
|
||||
"type": "boolean"
|
||||
},
|
||||
"strictVersion": {
|
||||
"description": "Do not accept shared module if version is not valid (defaults to yes, if local fallback module is available and shared module is not a singleton, otherwise no, has no effect if there is no required version specified).",
|
||||
"type": "boolean"
|
||||
},
|
||||
"version": {
|
||||
"description": "Version of the provided module. Will replace lower matching versions, but not higher.",
|
||||
"anyOf": [
|
||||
{
|
||||
"description": "Don't provide a version.",
|
||||
"enum": [false]
|
||||
},
|
||||
{
|
||||
"description": "Version as string. Each part of the version should be separated by a dot '.'.",
|
||||
"type": "string"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
"SharedItem": {
|
||||
"description": "A module that should be shared in the share scope.",
|
||||
"type": "string",
|
||||
"minLength": 1
|
||||
},
|
||||
"SharedObject": {
|
||||
"description": "Modules that should be shared in the share scope. Property names are used to match requested modules in this compilation. Relative requests are resolved, module requests are matched unresolved, absolute paths will match resolved requests. A trailing slash will match all requests with this prefix. In this case shareKey must also have a trailing slash.",
|
||||
"type": "object",
|
||||
"additionalProperties": {
|
||||
"description": "Modules that should be shared in the share scope.",
|
||||
"anyOf": [
|
||||
{
|
||||
"$ref": "#/definitions/SharedConfig"
|
||||
},
|
||||
{
|
||||
"$ref": "#/definitions/SharedItem"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
7
app_vue/node_modules/webpack/schemas/plugins/BannerPlugin.check.d.ts
generated
vendored
Normal file
7
app_vue/node_modules/webpack/schemas/plugins/BannerPlugin.check.d.ts
generated
vendored
Normal file
@ -0,0 +1,7 @@
|
||||
/*
|
||||
* This file was automatically generated.
|
||||
* DO NOT MODIFY BY HAND.
|
||||
* Run `yarn fix:special` to update
|
||||
*/
|
||||
declare const check: (options: import("../../declarations/plugins/BannerPlugin").BannerPluginArgument) => boolean;
|
||||
export = check;
|
6
app_vue/node_modules/webpack/schemas/plugins/BannerPlugin.check.js
generated
vendored
Normal file
6
app_vue/node_modules/webpack/schemas/plugins/BannerPlugin.check.js
generated
vendored
Normal file
@ -0,0 +1,6 @@
|
||||
/*
|
||||
* This file was automatically generated.
|
||||
* DO NOT MODIFY BY HAND.
|
||||
* Run `yarn fix:special` to update
|
||||
*/
|
||||
"use strict";function n(t,{instancePath:e="",parentData:s,parentDataProperty:l,rootData:a=t}={}){let r=null,o=0;const u=o;let i=!1;const p=o;if(o===p)if(Array.isArray(t)){const n=t.length;for(let e=0;e<n;e++){let n=t[e];const s=o,l=o;let a=!1,u=null;const i=o,p=o;let f=!1;const h=o;if(!(n instanceof RegExp)){const n={params:{}};null===r?r=[n]:r.push(n),o++}var c=h===o;if(f=f||c,!f){const t=o;if(o===t)if("string"==typeof n){if(n.length<1){const n={params:{}};null===r?r=[n]:r.push(n),o++}}else{const n={params:{type:"string"}};null===r?r=[n]:r.push(n),o++}c=t===o,f=f||c}if(f)o=p,null!==r&&(p?r.length=p:r=null);else{const n={params:{}};null===r?r=[n]:r.push(n),o++}if(i===o&&(a=!0,u=0),a)o=l,null!==r&&(l?r.length=l:r=null);else{const n={params:{passingSchemas:u}};null===r?r=[n]:r.push(n),o++}if(s!==o)break}}else{const n={params:{type:"array"}};null===r?r=[n]:r.push(n),o++}var f=p===o;if(i=i||f,!i){const n=o,e=o;let s=!1;const l=o;if(!(t instanceof RegExp)){const n={params:{}};null===r?r=[n]:r.push(n),o++}var h=l===o;if(s=s||h,!s){const n=o;if(o===n)if("string"==typeof t){if(t.length<1){const n={params:{}};null===r?r=[n]:r.push(n),o++}}else{const n={params:{type:"string"}};null===r?r=[n]:r.push(n),o++}h=n===o,s=s||h}if(s)o=e,null!==r&&(e?r.length=e:r=null);else{const n={params:{}};null===r?r=[n]:r.push(n),o++}f=n===o,i=i||f}if(!i){const t={params:{}};return null===r?r=[t]:r.push(t),o++,n.errors=r,!1}return o=u,null!==r&&(u?r.length=u:r=null),n.errors=r,0===o}function t(e,{instancePath:s="",parentData:l,parentDataProperty:a,rootData:r=e}={}){let o=null,u=0;const i=u;let p=!1;const c=u;if(u===c)if("string"==typeof e){if(e.length<1){const n={params:{}};null===o?o=[n]:o.push(n),u++}}else{const n={params:{type:"string"}};null===o?o=[n]:o.push(n),u++}var f=c===u;if(p=p||f,!p){const t=u;if(u===t)if(e&&"object"==typeof e&&!Array.isArray(e)){let t;if(void 0===e.banner&&(t="banner")){const n={params:{missingProperty:t}};null===o?o=[n]:o.push(n),u++}else{const t=u;for(const n in e)if("banner"!==n&&"entryOnly"!==n&&"exclude"!==n&&"footer"!==n&&"include"!==n&&"raw"!==n&&"stage"!==n&&"test"!==n){const t={params:{additionalProperty:n}};null===o?o=[t]:o.push(t),u++;break}if(t===u){if(void 0!==e.banner){let n=e.banner;const t=u,s=u;let l=!1;const a=u;if("string"!=typeof n){const n={params:{type:"string"}};null===o?o=[n]:o.push(n),u++}var h=a===u;if(l=l||h,!l){const t=u;if(!(n instanceof Function)){const n={params:{}};null===o?o=[n]:o.push(n),u++}h=t===u,l=l||h}if(l)u=s,null!==o&&(s?o.length=s:o=null);else{const n={params:{}};null===o?o=[n]:o.push(n),u++}var m=t===u}else m=!0;if(m){if(void 0!==e.entryOnly){const n=u;if("boolean"!=typeof e.entryOnly){const n={params:{type:"boolean"}};null===o?o=[n]:o.push(n),u++}m=n===u}else m=!0;if(m){if(void 0!==e.exclude){const t=u,l=u;let a=!1,i=null;const p=u;if(n(e.exclude,{instancePath:s+"/exclude",parentData:e,parentDataProperty:"exclude",rootData:r})||(o=null===o?n.errors:o.concat(n.errors),u=o.length),p===u&&(a=!0,i=0),a)u=l,null!==o&&(l?o.length=l:o=null);else{const n={params:{passingSchemas:i}};null===o?o=[n]:o.push(n),u++}m=t===u}else m=!0;if(m){if(void 0!==e.footer){const n=u;if("boolean"!=typeof e.footer){const n={params:{type:"boolean"}};null===o?o=[n]:o.push(n),u++}m=n===u}else m=!0;if(m){if(void 0!==e.include){const t=u,l=u;let a=!1,i=null;const p=u;if(n(e.include,{instancePath:s+"/include",parentData:e,parentDataProperty:"include",rootData:r})||(o=null===o?n.errors:o.concat(n.errors),u=o.length),p===u&&(a=!0,i=0),a)u=l,null!==o&&(l?o.length=l:o=null);else{const n={params:{passingSchemas:i}};null===o?o=[n]:o.push(n),u++}m=t===u}else m=!0;if(m){if(void 0!==e.raw){const n=u;if("boolean"!=typeof e.raw){const n={params:{type:"boolean"}};null===o?o=[n]:o.push(n),u++}m=n===u}else m=!0;if(m){if(void 0!==e.stage){const n=u;if("number"!=typeof e.stage){const n={params:{type:"number"}};null===o?o=[n]:o.push(n),u++}m=n===u}else m=!0;if(m)if(void 0!==e.test){const t=u,l=u;let a=!1,i=null;const p=u;if(n(e.test,{instancePath:s+"/test",parentData:e,parentDataProperty:"test",rootData:r})||(o=null===o?n.errors:o.concat(n.errors),u=o.length),p===u&&(a=!0,i=0),a)u=l,null!==o&&(l?o.length=l:o=null);else{const n={params:{passingSchemas:i}};null===o?o=[n]:o.push(n),u++}m=t===u}else m=!0}}}}}}}}}else{const n={params:{type:"object"}};null===o?o=[n]:o.push(n),u++}if(f=t===u,p=p||f,!p){const n=u;if(!(e instanceof Function)){const n={params:{}};null===o?o=[n]:o.push(n),u++}f=n===u,p=p||f}}if(!p){const n={params:{}};return null===o?o=[n]:o.push(n),u++,t.errors=o,!1}return u=i,null!==o&&(i?o.length=i:o=null),t.errors=o,0===u}module.exports=t,module.exports.default=t;
|
111
app_vue/node_modules/webpack/schemas/plugins/BannerPlugin.json
generated
vendored
Normal file
111
app_vue/node_modules/webpack/schemas/plugins/BannerPlugin.json
generated
vendored
Normal file
@ -0,0 +1,111 @@
|
||||
{
|
||||
"definitions": {
|
||||
"BannerFunction": {
|
||||
"description": "The banner as function, it will be wrapped in a comment.",
|
||||
"instanceof": "Function",
|
||||
"tsType": "(data: { hash?: string, chunk: import('../../lib/Chunk'), filename: string }) => string"
|
||||
},
|
||||
"Rule": {
|
||||
"description": "Filtering rule as regex or string.",
|
||||
"anyOf": [
|
||||
{
|
||||
"instanceof": "RegExp",
|
||||
"tsType": "RegExp"
|
||||
},
|
||||
{
|
||||
"type": "string",
|
||||
"minLength": 1
|
||||
}
|
||||
]
|
||||
},
|
||||
"Rules": {
|
||||
"description": "Filtering rules.",
|
||||
"anyOf": [
|
||||
{
|
||||
"type": "array",
|
||||
"items": {
|
||||
"description": "A rule condition.",
|
||||
"oneOf": [
|
||||
{
|
||||
"$ref": "#/definitions/Rule"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"$ref": "#/definitions/Rule"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"title": "BannerPluginArgument",
|
||||
"anyOf": [
|
||||
{
|
||||
"description": "The banner as string, it will be wrapped in a comment.",
|
||||
"type": "string",
|
||||
"minLength": 1
|
||||
},
|
||||
{
|
||||
"title": "BannerPluginOptions",
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"banner": {
|
||||
"description": "Specifies the banner.",
|
||||
"anyOf": [
|
||||
{
|
||||
"type": "string"
|
||||
},
|
||||
{
|
||||
"$ref": "#/definitions/BannerFunction"
|
||||
}
|
||||
]
|
||||
},
|
||||
"entryOnly": {
|
||||
"description": "If true, the banner will only be added to the entry chunks.",
|
||||
"type": "boolean"
|
||||
},
|
||||
"exclude": {
|
||||
"description": "Exclude all modules matching any of these conditions.",
|
||||
"oneOf": [
|
||||
{
|
||||
"$ref": "#/definitions/Rules"
|
||||
}
|
||||
]
|
||||
},
|
||||
"footer": {
|
||||
"description": "If true, banner will be placed at the end of the output.",
|
||||
"type": "boolean"
|
||||
},
|
||||
"include": {
|
||||
"description": "Include all modules matching any of these conditions.",
|
||||
"oneOf": [
|
||||
{
|
||||
"$ref": "#/definitions/Rules"
|
||||
}
|
||||
]
|
||||
},
|
||||
"raw": {
|
||||
"description": "If true, banner will not be wrapped in a comment.",
|
||||
"type": "boolean"
|
||||
},
|
||||
"stage": {
|
||||
"description": "Specifies the stage when add a banner.",
|
||||
"type": "number"
|
||||
},
|
||||
"test": {
|
||||
"description": "Include all modules that pass test assertion.",
|
||||
"oneOf": [
|
||||
{
|
||||
"$ref": "#/definitions/Rules"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"required": ["banner"]
|
||||
},
|
||||
{
|
||||
"$ref": "#/definitions/BannerFunction"
|
||||
}
|
||||
]
|
||||
}
|
7
app_vue/node_modules/webpack/schemas/plugins/DllPlugin.check.d.ts
generated
vendored
Normal file
7
app_vue/node_modules/webpack/schemas/plugins/DllPlugin.check.d.ts
generated
vendored
Normal file
@ -0,0 +1,7 @@
|
||||
/*
|
||||
* This file was automatically generated.
|
||||
* DO NOT MODIFY BY HAND.
|
||||
* Run `yarn fix:special` to update
|
||||
*/
|
||||
declare const check: (options: import("../../declarations/plugins/DllPlugin").DllPluginOptions) => boolean;
|
||||
export = check;
|
6
app_vue/node_modules/webpack/schemas/plugins/DllPlugin.check.js
generated
vendored
Normal file
6
app_vue/node_modules/webpack/schemas/plugins/DllPlugin.check.js
generated
vendored
Normal file
@ -0,0 +1,6 @@
|
||||
/*
|
||||
* This file was automatically generated.
|
||||
* DO NOT MODIFY BY HAND.
|
||||
* Run `yarn fix:special` to update
|
||||
*/
|
||||
"use strict";function r(e,{instancePath:t="",parentData:o,parentDataProperty:n,rootData:a=e}={}){if(!e||"object"!=typeof e||Array.isArray(e))return r.errors=[{params:{type:"object"}}],!1;{let t;if(void 0===e.path&&(t="path"))return r.errors=[{params:{missingProperty:t}}],!1;{const t=0;for(const t in e)if("context"!==t&&"entryOnly"!==t&&"format"!==t&&"name"!==t&&"path"!==t&&"type"!==t)return r.errors=[{params:{additionalProperty:t}}],!1;if(0===t){if(void 0!==e.context){let t=e.context;const o=0;if(0===o){if("string"!=typeof t)return r.errors=[{params:{type:"string"}}],!1;if(t.length<1)return r.errors=[{params:{}}],!1}var s=0===o}else s=!0;if(s){if(void 0!==e.entryOnly){const t=0;if("boolean"!=typeof e.entryOnly)return r.errors=[{params:{type:"boolean"}}],!1;s=0===t}else s=!0;if(s){if(void 0!==e.format){const t=0;if("boolean"!=typeof e.format)return r.errors=[{params:{type:"boolean"}}],!1;s=0===t}else s=!0;if(s){if(void 0!==e.name){let t=e.name;const o=0;if(0===o){if("string"!=typeof t)return r.errors=[{params:{type:"string"}}],!1;if(t.length<1)return r.errors=[{params:{}}],!1}s=0===o}else s=!0;if(s){if(void 0!==e.path){let t=e.path;const o=0;if(0===o){if("string"!=typeof t)return r.errors=[{params:{type:"string"}}],!1;if(t.length<1)return r.errors=[{params:{}}],!1}s=0===o}else s=!0;if(s)if(void 0!==e.type){let t=e.type;const o=0;if(0===o){if("string"!=typeof t)return r.errors=[{params:{type:"string"}}],!1;if(t.length<1)return r.errors=[{params:{}}],!1}s=0===o}else s=!0}}}}}}}return r.errors=null,!0}module.exports=r,module.exports.default=r;
|
36
app_vue/node_modules/webpack/schemas/plugins/DllPlugin.json
generated
vendored
Normal file
36
app_vue/node_modules/webpack/schemas/plugins/DllPlugin.json
generated
vendored
Normal file
@ -0,0 +1,36 @@
|
||||
{
|
||||
"title": "DllPluginOptions",
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"context": {
|
||||
"description": "Context of requests in the manifest file (defaults to the webpack context).",
|
||||
"type": "string",
|
||||
"minLength": 1
|
||||
},
|
||||
"entryOnly": {
|
||||
"description": "If true, only entry points will be exposed (default: true).",
|
||||
"type": "boolean"
|
||||
},
|
||||
"format": {
|
||||
"description": "If true, manifest json file (output) will be formatted.",
|
||||
"type": "boolean"
|
||||
},
|
||||
"name": {
|
||||
"description": "Name of the exposed dll function (external name, use value of 'output.library').",
|
||||
"type": "string",
|
||||
"minLength": 1
|
||||
},
|
||||
"path": {
|
||||
"description": "Absolute path to the manifest json file (output).",
|
||||
"type": "string",
|
||||
"minLength": 1
|
||||
},
|
||||
"type": {
|
||||
"description": "Type of the dll bundle (external type, use value of 'output.libraryTarget').",
|
||||
"type": "string",
|
||||
"minLength": 1
|
||||
}
|
||||
},
|
||||
"required": ["path"]
|
||||
}
|
7
app_vue/node_modules/webpack/schemas/plugins/DllReferencePlugin.check.d.ts
generated
vendored
Normal file
7
app_vue/node_modules/webpack/schemas/plugins/DllReferencePlugin.check.d.ts
generated
vendored
Normal file
@ -0,0 +1,7 @@
|
||||
/*
|
||||
* This file was automatically generated.
|
||||
* DO NOT MODIFY BY HAND.
|
||||
* Run `yarn fix:special` to update
|
||||
*/
|
||||
declare const check: (options: import("../../declarations/plugins/DllReferencePlugin").DllReferencePluginOptions) => boolean;
|
||||
export = check;
|
6
app_vue/node_modules/webpack/schemas/plugins/DllReferencePlugin.check.js
generated
vendored
Normal file
6
app_vue/node_modules/webpack/schemas/plugins/DllReferencePlugin.check.js
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
206
app_vue/node_modules/webpack/schemas/plugins/DllReferencePlugin.json
generated
vendored
Normal file
206
app_vue/node_modules/webpack/schemas/plugins/DllReferencePlugin.json
generated
vendored
Normal file
@ -0,0 +1,206 @@
|
||||
{
|
||||
"definitions": {
|
||||
"DllReferencePluginOptionsContent": {
|
||||
"description": "The mappings from request to module info.",
|
||||
"type": "object",
|
||||
"additionalProperties": {
|
||||
"description": "Module info.",
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"buildMeta": {
|
||||
"description": "Meta information about the module.",
|
||||
"type": "object"
|
||||
},
|
||||
"exports": {
|
||||
"description": "Information about the provided exports of the module.",
|
||||
"anyOf": [
|
||||
{
|
||||
"description": "List of provided exports of the module.",
|
||||
"type": "array",
|
||||
"items": {
|
||||
"description": "Name of the export.",
|
||||
"type": "string",
|
||||
"minLength": 1
|
||||
}
|
||||
},
|
||||
{
|
||||
"description": "Exports unknown/dynamic.",
|
||||
"enum": [true]
|
||||
}
|
||||
]
|
||||
},
|
||||
"id": {
|
||||
"description": "Module ID.",
|
||||
"anyOf": [
|
||||
{
|
||||
"type": "number"
|
||||
},
|
||||
{
|
||||
"type": "string",
|
||||
"minLength": 1
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"required": ["id"]
|
||||
},
|
||||
"minProperties": 1
|
||||
},
|
||||
"DllReferencePluginOptionsManifest": {
|
||||
"description": "An object containing content, name and type.",
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"content": {
|
||||
"description": "The mappings from request to module info.",
|
||||
"oneOf": [
|
||||
{
|
||||
"$ref": "#/definitions/DllReferencePluginOptionsContent"
|
||||
}
|
||||
]
|
||||
},
|
||||
"name": {
|
||||
"description": "The name where the dll is exposed (external name).",
|
||||
"type": "string",
|
||||
"minLength": 1
|
||||
},
|
||||
"type": {
|
||||
"description": "The type how the dll is exposed (external type).",
|
||||
"oneOf": [
|
||||
{
|
||||
"$ref": "#/definitions/DllReferencePluginOptionsSourceType"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"required": ["content"]
|
||||
},
|
||||
"DllReferencePluginOptionsSourceType": {
|
||||
"description": "The type how the dll is exposed (external type).",
|
||||
"enum": [
|
||||
"var",
|
||||
"assign",
|
||||
"this",
|
||||
"window",
|
||||
"global",
|
||||
"commonjs",
|
||||
"commonjs2",
|
||||
"commonjs-module",
|
||||
"amd",
|
||||
"amd-require",
|
||||
"umd",
|
||||
"umd2",
|
||||
"jsonp",
|
||||
"system"
|
||||
]
|
||||
}
|
||||
},
|
||||
"title": "DllReferencePluginOptions",
|
||||
"anyOf": [
|
||||
{
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"context": {
|
||||
"description": "Context of requests in the manifest (or content property) as absolute path.",
|
||||
"type": "string",
|
||||
"absolutePath": true
|
||||
},
|
||||
"extensions": {
|
||||
"description": "Extensions used to resolve modules in the dll bundle (only used when using 'scope').",
|
||||
"type": "array",
|
||||
"items": {
|
||||
"description": "An extension.",
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"manifest": {
|
||||
"description": "An object containing content and name or a string to the absolute path of the JSON manifest to be loaded upon compilation.",
|
||||
"anyOf": [
|
||||
{
|
||||
"type": "string",
|
||||
"absolutePath": true
|
||||
},
|
||||
{
|
||||
"$ref": "#/definitions/DllReferencePluginOptionsManifest"
|
||||
}
|
||||
]
|
||||
},
|
||||
"name": {
|
||||
"description": "The name where the dll is exposed (external name, defaults to manifest.name).",
|
||||
"type": "string",
|
||||
"minLength": 1
|
||||
},
|
||||
"scope": {
|
||||
"description": "Prefix which is used for accessing the content of the dll.",
|
||||
"type": "string",
|
||||
"minLength": 1
|
||||
},
|
||||
"sourceType": {
|
||||
"description": "How the dll is exposed (libraryTarget, defaults to manifest.type).",
|
||||
"oneOf": [
|
||||
{
|
||||
"$ref": "#/definitions/DllReferencePluginOptionsSourceType"
|
||||
}
|
||||
]
|
||||
},
|
||||
"type": {
|
||||
"description": "The way how the export of the dll bundle is used.",
|
||||
"enum": ["require", "object"]
|
||||
}
|
||||
},
|
||||
"required": ["manifest"]
|
||||
},
|
||||
{
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"content": {
|
||||
"description": "The mappings from request to module info.",
|
||||
"oneOf": [
|
||||
{
|
||||
"$ref": "#/definitions/DllReferencePluginOptionsContent"
|
||||
}
|
||||
]
|
||||
},
|
||||
"context": {
|
||||
"description": "Context of requests in the manifest (or content property) as absolute path.",
|
||||
"type": "string",
|
||||
"absolutePath": true
|
||||
},
|
||||
"extensions": {
|
||||
"description": "Extensions used to resolve modules in the dll bundle (only used when using 'scope').",
|
||||
"type": "array",
|
||||
"items": {
|
||||
"description": "An extension.",
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"name": {
|
||||
"description": "The name where the dll is exposed (external name).",
|
||||
"type": "string",
|
||||
"minLength": 1
|
||||
},
|
||||
"scope": {
|
||||
"description": "Prefix which is used for accessing the content of the dll.",
|
||||
"type": "string",
|
||||
"minLength": 1
|
||||
},
|
||||
"sourceType": {
|
||||
"description": "How the dll is exposed (libraryTarget).",
|
||||
"oneOf": [
|
||||
{
|
||||
"$ref": "#/definitions/DllReferencePluginOptionsSourceType"
|
||||
}
|
||||
]
|
||||
},
|
||||
"type": {
|
||||
"description": "The way how the export of the dll bundle is used.",
|
||||
"enum": ["require", "object"]
|
||||
}
|
||||
},
|
||||
"required": ["content", "name"]
|
||||
}
|
||||
]
|
||||
}
|
7
app_vue/node_modules/webpack/schemas/plugins/HashedModuleIdsPlugin.check.d.ts
generated
vendored
Normal file
7
app_vue/node_modules/webpack/schemas/plugins/HashedModuleIdsPlugin.check.d.ts
generated
vendored
Normal file
@ -0,0 +1,7 @@
|
||||
/*
|
||||
* This file was automatically generated.
|
||||
* DO NOT MODIFY BY HAND.
|
||||
* Run `yarn fix:special` to update
|
||||
*/
|
||||
declare const check: (options: import("../../declarations/plugins/HashedModuleIdsPlugin").HashedModuleIdsPluginOptions) => boolean;
|
||||
export = check;
|
6
app_vue/node_modules/webpack/schemas/plugins/HashedModuleIdsPlugin.check.js
generated
vendored
Normal file
6
app_vue/node_modules/webpack/schemas/plugins/HashedModuleIdsPlugin.check.js
generated
vendored
Normal file
@ -0,0 +1,6 @@
|
||||
/*
|
||||
* This file was automatically generated.
|
||||
* DO NOT MODIFY BY HAND.
|
||||
* Run `yarn fix:special` to update
|
||||
*/
|
||||
const t=/^(?:[A-Za-z]:[\\/]|\\\\|\/)/;function e(r,{instancePath:s="",parentData:n,parentDataProperty:a,rootData:i=r}={}){let o=null,l=0;if(0===l){if(!r||"object"!=typeof r||Array.isArray(r))return e.errors=[{params:{type:"object"}}],!1;{const s=l;for(const t in r)if("context"!==t&&"hashDigest"!==t&&"hashDigestLength"!==t&&"hashFunction"!==t)return e.errors=[{params:{additionalProperty:t}}],!1;if(s===l){if(void 0!==r.context){let s=r.context;const n=l;if(l===n){if("string"!=typeof s)return e.errors=[{params:{type:"string"}}],!1;if(s.includes("!")||!0!==t.test(s))return e.errors=[{params:{}}],!1}var u=n===l}else u=!0;if(u){if(void 0!==r.hashDigest){let t=r.hashDigest;const s=l;if("hex"!==t&&"latin1"!==t&&"base64"!==t)return e.errors=[{params:{}}],!1;u=s===l}else u=!0;if(u){if(void 0!==r.hashDigestLength){let t=r.hashDigestLength;const s=l;if(l===s){if("number"!=typeof t)return e.errors=[{params:{type:"number"}}],!1;if(t<1||isNaN(t))return e.errors=[{params:{comparison:">=",limit:1}}],!1}u=s===l}else u=!0;if(u)if(void 0!==r.hashFunction){let t=r.hashFunction;const s=l,n=l;let a=!1,i=null;const p=l,h=l;let c=!1;const m=l;if(l===m)if("string"==typeof t){if(t.length<1){const t={params:{}};null===o?o=[t]:o.push(t),l++}}else{const t={params:{type:"string"}};null===o?o=[t]:o.push(t),l++}var f=m===l;if(c=c||f,!c){const e=l;if(!(t instanceof Function)){const t={params:{}};null===o?o=[t]:o.push(t),l++}f=e===l,c=c||f}if(c)l=h,null!==o&&(h?o.length=h:o=null);else{const t={params:{}};null===o?o=[t]:o.push(t),l++}if(p===l&&(a=!0,i=0),!a){const t={params:{passingSchemas:i}};return null===o?o=[t]:o.push(t),l++,e.errors=o,!1}l=n,null!==o&&(n?o.length=n:o=null),u=s===l}else u=!0}}}}}return e.errors=o,0===l}module.exports=e,module.exports.default=e;
|
44
app_vue/node_modules/webpack/schemas/plugins/HashedModuleIdsPlugin.json
generated
vendored
Normal file
44
app_vue/node_modules/webpack/schemas/plugins/HashedModuleIdsPlugin.json
generated
vendored
Normal file
@ -0,0 +1,44 @@
|
||||
{
|
||||
"definitions": {
|
||||
"HashFunction": {
|
||||
"description": "Algorithm used for generation the hash (see node.js crypto package).",
|
||||
"anyOf": [
|
||||
{
|
||||
"type": "string",
|
||||
"minLength": 1
|
||||
},
|
||||
{
|
||||
"instanceof": "Function",
|
||||
"tsType": "typeof import('../../lib/util/Hash')"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"title": "HashedModuleIdsPluginOptions",
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"context": {
|
||||
"description": "The context directory for creating names.",
|
||||
"type": "string",
|
||||
"absolutePath": true
|
||||
},
|
||||
"hashDigest": {
|
||||
"description": "The encoding to use when generating the hash, defaults to 'base64'. All encodings from Node.JS' hash.digest are supported.",
|
||||
"enum": ["hex", "latin1", "base64"]
|
||||
},
|
||||
"hashDigestLength": {
|
||||
"description": "The prefix length of the hash digest to use, defaults to 4.",
|
||||
"type": "number",
|
||||
"minimum": 1
|
||||
},
|
||||
"hashFunction": {
|
||||
"description": "The hashing algorithm to use, defaults to 'md4'. All functions from Node.JS' crypto.createHash are supported.",
|
||||
"oneOf": [
|
||||
{
|
||||
"$ref": "#/definitions/HashFunction"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
7
app_vue/node_modules/webpack/schemas/plugins/IgnorePlugin.check.d.ts
generated
vendored
Normal file
7
app_vue/node_modules/webpack/schemas/plugins/IgnorePlugin.check.d.ts
generated
vendored
Normal file
@ -0,0 +1,7 @@
|
||||
/*
|
||||
* This file was automatically generated.
|
||||
* DO NOT MODIFY BY HAND.
|
||||
* Run `yarn fix:special` to update
|
||||
*/
|
||||
declare const check: (options: import("../../declarations/plugins/IgnorePlugin").IgnorePluginOptions) => boolean;
|
||||
export = check;
|
6
app_vue/node_modules/webpack/schemas/plugins/IgnorePlugin.check.js
generated
vendored
Normal file
6
app_vue/node_modules/webpack/schemas/plugins/IgnorePlugin.check.js
generated
vendored
Normal file
@ -0,0 +1,6 @@
|
||||
/*
|
||||
* This file was automatically generated.
|
||||
* DO NOT MODIFY BY HAND.
|
||||
* Run `yarn fix:special` to update
|
||||
*/
|
||||
"use strict";function e(s,{instancePath:o="",parentData:r,parentDataProperty:t,rootData:n=s}={}){let c=null,a=0;const p=a;let l=!1;const i=a;if(a===i)if(s&&"object"==typeof s&&!Array.isArray(s)){let e;if(void 0===s.resourceRegExp&&(e="resourceRegExp")){const s={params:{missingProperty:e}};null===c?c=[s]:c.push(s),a++}else{const e=a;for(const e in s)if("contextRegExp"!==e&&"resourceRegExp"!==e){const s={params:{additionalProperty:e}};null===c?c=[s]:c.push(s),a++;break}if(e===a){if(void 0!==s.contextRegExp){const e=a;if(!(s.contextRegExp instanceof RegExp)){const e={params:{}};null===c?c=[e]:c.push(e),a++}var u=e===a}else u=!0;if(u)if(void 0!==s.resourceRegExp){const e=a;if(!(s.resourceRegExp instanceof RegExp)){const e={params:{}};null===c?c=[e]:c.push(e),a++}u=e===a}else u=!0}}}else{const e={params:{type:"object"}};null===c?c=[e]:c.push(e),a++}var f=i===a;if(l=l||f,!l){const e=a;if(a===e)if(s&&"object"==typeof s&&!Array.isArray(s)){let e;if(void 0===s.checkResource&&(e="checkResource")){const s={params:{missingProperty:e}};null===c?c=[s]:c.push(s),a++}else{const e=a;for(const e in s)if("checkResource"!==e){const s={params:{additionalProperty:e}};null===c?c=[s]:c.push(s),a++;break}if(e===a&&void 0!==s.checkResource&&!(s.checkResource instanceof Function)){const e={params:{}};null===c?c=[e]:c.push(e),a++}}}else{const e={params:{type:"object"}};null===c?c=[e]:c.push(e),a++}f=e===a,l=l||f}if(!l){const s={params:{}};return null===c?c=[s]:c.push(s),a++,e.errors=c,!1}return a=p,null!==c&&(p?c.length=p:c=null),e.errors=c,0===a}module.exports=e,module.exports.default=e;
|
34
app_vue/node_modules/webpack/schemas/plugins/IgnorePlugin.json
generated
vendored
Normal file
34
app_vue/node_modules/webpack/schemas/plugins/IgnorePlugin.json
generated
vendored
Normal file
@ -0,0 +1,34 @@
|
||||
{
|
||||
"title": "IgnorePluginOptions",
|
||||
"anyOf": [
|
||||
{
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"contextRegExp": {
|
||||
"description": "A RegExp to test the context (directory) against.",
|
||||
"instanceof": "RegExp",
|
||||
"tsType": "RegExp"
|
||||
},
|
||||
"resourceRegExp": {
|
||||
"description": "A RegExp to test the request against.",
|
||||
"instanceof": "RegExp",
|
||||
"tsType": "RegExp"
|
||||
}
|
||||
},
|
||||
"required": ["resourceRegExp"]
|
||||
},
|
||||
{
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"checkResource": {
|
||||
"description": "A filter function for resource and context.",
|
||||
"instanceof": "Function",
|
||||
"tsType": "((resource: string, context: string) => boolean)"
|
||||
}
|
||||
},
|
||||
"required": ["checkResource"]
|
||||
}
|
||||
]
|
||||
}
|
7
app_vue/node_modules/webpack/schemas/plugins/LoaderOptionsPlugin.check.d.ts
generated
vendored
Normal file
7
app_vue/node_modules/webpack/schemas/plugins/LoaderOptionsPlugin.check.d.ts
generated
vendored
Normal file
@ -0,0 +1,7 @@
|
||||
/*
|
||||
* This file was automatically generated.
|
||||
* DO NOT MODIFY BY HAND.
|
||||
* Run `yarn fix:special` to update
|
||||
*/
|
||||
declare const check: (options: import("../../declarations/plugins/LoaderOptionsPlugin").LoaderOptionsPluginOptions) => boolean;
|
||||
export = check;
|
6
app_vue/node_modules/webpack/schemas/plugins/LoaderOptionsPlugin.check.js
generated
vendored
Normal file
6
app_vue/node_modules/webpack/schemas/plugins/LoaderOptionsPlugin.check.js
generated
vendored
Normal file
@ -0,0 +1,6 @@
|
||||
/*
|
||||
* This file was automatically generated.
|
||||
* DO NOT MODIFY BY HAND.
|
||||
* Run `yarn fix:special` to update
|
||||
*/
|
||||
const r=/^(?:[A-Za-z]:[\\/]|\\\\|\/)/;function e(t,{instancePath:o="",parentData:a,parentDataProperty:i,rootData:n=t}={}){if(!t||"object"!=typeof t||Array.isArray(t))return e.errors=[{params:{type:"object"}}],!1;if(void 0!==t.debug){const r=0;if("boolean"!=typeof t.debug)return e.errors=[{params:{type:"boolean"}}],!1;var s=0===r}else s=!0;if(s){if(void 0!==t.minimize){const r=0;if("boolean"!=typeof t.minimize)return e.errors=[{params:{type:"boolean"}}],!1;s=0===r}else s=!0;if(s)if(void 0!==t.options){let o=t.options;const a=0;if(0===a){if(!o||"object"!=typeof o||Array.isArray(o))return e.errors=[{params:{type:"object"}}],!1;if(void 0!==o.context){let t=o.context;if("string"!=typeof t)return e.errors=[{params:{type:"string"}}],!1;if(t.includes("!")||!0!==r.test(t))return e.errors=[{params:{}}],!1}}s=0===a}else s=!0}return e.errors=null,!0}module.exports=e,module.exports.default=e;
|
27
app_vue/node_modules/webpack/schemas/plugins/LoaderOptionsPlugin.json
generated
vendored
Normal file
27
app_vue/node_modules/webpack/schemas/plugins/LoaderOptionsPlugin.json
generated
vendored
Normal file
@ -0,0 +1,27 @@
|
||||
{
|
||||
"title": "LoaderOptionsPluginOptions",
|
||||
"type": "object",
|
||||
"additionalProperties": true,
|
||||
"properties": {
|
||||
"debug": {
|
||||
"description": "Whether loaders should be in debug mode or not. debug will be removed as of webpack 3.",
|
||||
"type": "boolean"
|
||||
},
|
||||
"minimize": {
|
||||
"description": "Where loaders can be switched to minimize mode.",
|
||||
"type": "boolean"
|
||||
},
|
||||
"options": {
|
||||
"description": "A configuration object that can be used to configure older loaders.",
|
||||
"type": "object",
|
||||
"additionalProperties": true,
|
||||
"properties": {
|
||||
"context": {
|
||||
"description": "The context that can be used to configure older loaders.",
|
||||
"type": "string",
|
||||
"absolutePath": true
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
7
app_vue/node_modules/webpack/schemas/plugins/ProgressPlugin.check.d.ts
generated
vendored
Normal file
7
app_vue/node_modules/webpack/schemas/plugins/ProgressPlugin.check.d.ts
generated
vendored
Normal file
@ -0,0 +1,7 @@
|
||||
/*
|
||||
* This file was automatically generated.
|
||||
* DO NOT MODIFY BY HAND.
|
||||
* Run `yarn fix:special` to update
|
||||
*/
|
||||
declare const check: (options: import("../../declarations/plugins/ProgressPlugin").ProgressPluginArgument) => boolean;
|
||||
export = check;
|
6
app_vue/node_modules/webpack/schemas/plugins/ProgressPlugin.check.js
generated
vendored
Normal file
6
app_vue/node_modules/webpack/schemas/plugins/ProgressPlugin.check.js
generated
vendored
Normal file
@ -0,0 +1,6 @@
|
||||
/*
|
||||
* This file was automatically generated.
|
||||
* DO NOT MODIFY BY HAND.
|
||||
* Run `yarn fix:special` to update
|
||||
*/
|
||||
"use strict";module.exports=t,module.exports.default=t;const e={type:"object",additionalProperties:!1,properties:{activeModules:{type:"boolean"},dependencies:{type:"boolean"},dependenciesCount:{type:"number"},entries:{type:"boolean"},handler:{oneOf:[{$ref:"#/definitions/HandlerFunction"}]},modules:{type:"boolean"},modulesCount:{type:"number"},percentBy:{enum:["entries","modules","dependencies",null]},profile:{enum:[!0,!1,null]}}},r=Object.prototype.hasOwnProperty;function n(t,{instancePath:o="",parentData:s,parentDataProperty:a,rootData:l=t}={}){let i=null,p=0;if(0===p){if(!t||"object"!=typeof t||Array.isArray(t))return n.errors=[{params:{type:"object"}}],!1;{const o=p;for(const o in t)if(!r.call(e.properties,o))return n.errors=[{params:{additionalProperty:o}}],!1;if(o===p){if(void 0!==t.activeModules){const e=p;if("boolean"!=typeof t.activeModules)return n.errors=[{params:{type:"boolean"}}],!1;var u=e===p}else u=!0;if(u){if(void 0!==t.dependencies){const e=p;if("boolean"!=typeof t.dependencies)return n.errors=[{params:{type:"boolean"}}],!1;u=e===p}else u=!0;if(u){if(void 0!==t.dependenciesCount){const e=p;if("number"!=typeof t.dependenciesCount)return n.errors=[{params:{type:"number"}}],!1;u=e===p}else u=!0;if(u){if(void 0!==t.entries){const e=p;if("boolean"!=typeof t.entries)return n.errors=[{params:{type:"boolean"}}],!1;u=e===p}else u=!0;if(u){if(void 0!==t.handler){const e=p,r=p;let o=!1,s=null;const a=p;if(!(t.handler instanceof Function)){const e={params:{}};null===i?i=[e]:i.push(e),p++}if(a===p&&(o=!0,s=0),!o){const e={params:{passingSchemas:s}};return null===i?i=[e]:i.push(e),p++,n.errors=i,!1}p=r,null!==i&&(r?i.length=r:i=null),u=e===p}else u=!0;if(u){if(void 0!==t.modules){const e=p;if("boolean"!=typeof t.modules)return n.errors=[{params:{type:"boolean"}}],!1;u=e===p}else u=!0;if(u){if(void 0!==t.modulesCount){const e=p;if("number"!=typeof t.modulesCount)return n.errors=[{params:{type:"number"}}],!1;u=e===p}else u=!0;if(u){if(void 0!==t.percentBy){let e=t.percentBy;const r=p;if("entries"!==e&&"modules"!==e&&"dependencies"!==e&&null!==e)return n.errors=[{params:{}}],!1;u=r===p}else u=!0;if(u)if(void 0!==t.profile){let e=t.profile;const r=p;if(!0!==e&&!1!==e&&null!==e)return n.errors=[{params:{}}],!1;u=r===p}else u=!0}}}}}}}}}}return n.errors=i,0===p}function t(e,{instancePath:r="",parentData:o,parentDataProperty:s,rootData:a=e}={}){let l=null,i=0;const p=i;let u=!1;const c=i;n(e,{instancePath:r,parentData:o,parentDataProperty:s,rootData:a})||(l=null===l?n.errors:l.concat(n.errors),i=l.length);var f=c===i;if(u=u||f,!u){const r=i;if(!(e instanceof Function)){const e={params:{}};null===l?l=[e]:l.push(e),i++}f=r===i,u=u||f}if(!u){const e={params:{}};return null===l?l=[e]:l.push(e),i++,t.errors=l,!1}return i=p,null!==l&&(p?l.length=p:l=null),t.errors=l,0===i}
|
65
app_vue/node_modules/webpack/schemas/plugins/ProgressPlugin.json
generated
vendored
Normal file
65
app_vue/node_modules/webpack/schemas/plugins/ProgressPlugin.json
generated
vendored
Normal file
@ -0,0 +1,65 @@
|
||||
{
|
||||
"definitions": {
|
||||
"HandlerFunction": {
|
||||
"description": "Function that executes for every progress step.",
|
||||
"instanceof": "Function",
|
||||
"tsType": "((percentage: number, msg: string, ...args: string[]) => void)"
|
||||
},
|
||||
"ProgressPluginOptions": {
|
||||
"description": "Options object for the ProgressPlugin.",
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"activeModules": {
|
||||
"description": "Show active modules count and one active module in progress message.",
|
||||
"type": "boolean"
|
||||
},
|
||||
"dependencies": {
|
||||
"description": "Show dependencies count in progress message.",
|
||||
"type": "boolean"
|
||||
},
|
||||
"dependenciesCount": {
|
||||
"description": "Minimum dependencies count to start with. For better progress calculation. Default: 10000.",
|
||||
"type": "number"
|
||||
},
|
||||
"entries": {
|
||||
"description": "Show entries count in progress message.",
|
||||
"type": "boolean"
|
||||
},
|
||||
"handler": {
|
||||
"description": "Function that executes for every progress step.",
|
||||
"oneOf": [
|
||||
{
|
||||
"$ref": "#/definitions/HandlerFunction"
|
||||
}
|
||||
]
|
||||
},
|
||||
"modules": {
|
||||
"description": "Show modules count in progress message.",
|
||||
"type": "boolean"
|
||||
},
|
||||
"modulesCount": {
|
||||
"description": "Minimum modules count to start with. For better progress calculation. Default: 5000.",
|
||||
"type": "number"
|
||||
},
|
||||
"percentBy": {
|
||||
"description": "Collect percent algorithm. By default it calculates by a median from modules, entries and dependencies percent.",
|
||||
"enum": ["entries", "modules", "dependencies", null]
|
||||
},
|
||||
"profile": {
|
||||
"description": "Collect profile data for progress steps. Default: false.",
|
||||
"enum": [true, false, null]
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"title": "ProgressPluginArgument",
|
||||
"anyOf": [
|
||||
{
|
||||
"$ref": "#/definitions/ProgressPluginOptions"
|
||||
},
|
||||
{
|
||||
"$ref": "#/definitions/HandlerFunction"
|
||||
}
|
||||
]
|
||||
}
|
7
app_vue/node_modules/webpack/schemas/plugins/SourceMapDevToolPlugin.check.d.ts
generated
vendored
Normal file
7
app_vue/node_modules/webpack/schemas/plugins/SourceMapDevToolPlugin.check.d.ts
generated
vendored
Normal file
@ -0,0 +1,7 @@
|
||||
/*
|
||||
* This file was automatically generated.
|
||||
* DO NOT MODIFY BY HAND.
|
||||
* Run `yarn fix:special` to update
|
||||
*/
|
||||
declare const check: (options: import("../../declarations/plugins/SourceMapDevToolPlugin").SourceMapDevToolPluginOptions) => boolean;
|
||||
export = check;
|
6
app_vue/node_modules/webpack/schemas/plugins/SourceMapDevToolPlugin.check.js
generated
vendored
Normal file
6
app_vue/node_modules/webpack/schemas/plugins/SourceMapDevToolPlugin.check.js
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
151
app_vue/node_modules/webpack/schemas/plugins/SourceMapDevToolPlugin.json
generated
vendored
Normal file
151
app_vue/node_modules/webpack/schemas/plugins/SourceMapDevToolPlugin.json
generated
vendored
Normal file
@ -0,0 +1,151 @@
|
||||
{
|
||||
"definitions": {
|
||||
"rule": {
|
||||
"description": "Include source maps for modules based on their extension (defaults to .js and .css).",
|
||||
"anyOf": [
|
||||
{
|
||||
"instanceof": "RegExp",
|
||||
"tsType": "RegExp"
|
||||
},
|
||||
{
|
||||
"type": "string",
|
||||
"minLength": 1
|
||||
}
|
||||
]
|
||||
},
|
||||
"rules": {
|
||||
"description": "Include source maps for modules based on their extension (defaults to .js and .css).",
|
||||
"anyOf": [
|
||||
{
|
||||
"type": "array",
|
||||
"items": {
|
||||
"description": "A rule condition.",
|
||||
"oneOf": [
|
||||
{
|
||||
"$ref": "#/definitions/rule"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"$ref": "#/definitions/rule"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"title": "SourceMapDevToolPluginOptions",
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"append": {
|
||||
"description": "Appends the given value to the original asset. Usually the #sourceMappingURL comment. [url] is replaced with a URL to the source map file. false disables the appending.",
|
||||
"anyOf": [
|
||||
{
|
||||
"description": "Append no SourceMap comment to the bundle, but still generate SourceMaps.",
|
||||
"enum": [false, null]
|
||||
},
|
||||
{
|
||||
"type": "string",
|
||||
"minLength": 1
|
||||
},
|
||||
{
|
||||
"instanceof": "Function",
|
||||
"tsType": "((pathData: import(\"../../lib/Compilation\").PathData, assetInfo?: import(\"../../lib/Compilation\").AssetInfo) => string)"
|
||||
}
|
||||
]
|
||||
},
|
||||
"columns": {
|
||||
"description": "Indicates whether column mappings should be used (defaults to true).",
|
||||
"type": "boolean"
|
||||
},
|
||||
"debugIds": {
|
||||
"description": "Emit debug IDs into source and SourceMap.",
|
||||
"type": "boolean"
|
||||
},
|
||||
"exclude": {
|
||||
"description": "Exclude modules that match the given value from source map generation.",
|
||||
"oneOf": [
|
||||
{
|
||||
"$ref": "#/definitions/rules"
|
||||
}
|
||||
]
|
||||
},
|
||||
"fallbackModuleFilenameTemplate": {
|
||||
"description": "Generator string or function to create identifiers of modules for the 'sources' array in the SourceMap used only if 'moduleFilenameTemplate' would result in a conflict.",
|
||||
"anyOf": [
|
||||
{
|
||||
"type": "string",
|
||||
"minLength": 1
|
||||
},
|
||||
{
|
||||
"description": "Custom function generating the identifier.",
|
||||
"instanceof": "Function",
|
||||
"tsType": "import('../../lib/ModuleFilenameHelpers').ModuleFilenameTemplateFunction"
|
||||
}
|
||||
]
|
||||
},
|
||||
"fileContext": {
|
||||
"description": "Path prefix to which the [file] placeholder is relative to.",
|
||||
"type": "string"
|
||||
},
|
||||
"filename": {
|
||||
"description": "Defines the output filename of the SourceMap (will be inlined if no value is provided).",
|
||||
"anyOf": [
|
||||
{
|
||||
"description": "Disable separate SourceMap file and inline SourceMap as DataUrl.",
|
||||
"enum": [false, null]
|
||||
},
|
||||
{
|
||||
"type": "string",
|
||||
"absolutePath": false,
|
||||
"minLength": 1
|
||||
}
|
||||
]
|
||||
},
|
||||
"include": {
|
||||
"description": "Include source maps for module paths that match the given value.",
|
||||
"oneOf": [
|
||||
{
|
||||
"$ref": "#/definitions/rules"
|
||||
}
|
||||
]
|
||||
},
|
||||
"module": {
|
||||
"description": "Indicates whether SourceMaps from loaders should be used (defaults to true).",
|
||||
"type": "boolean"
|
||||
},
|
||||
"moduleFilenameTemplate": {
|
||||
"description": "Generator string or function to create identifiers of modules for the 'sources' array in the SourceMap.",
|
||||
"anyOf": [
|
||||
{
|
||||
"type": "string",
|
||||
"minLength": 1
|
||||
},
|
||||
{
|
||||
"description": "Custom function generating the identifier.",
|
||||
"instanceof": "Function",
|
||||
"tsType": "import('../../lib/ModuleFilenameHelpers').ModuleFilenameTemplateFunction"
|
||||
}
|
||||
]
|
||||
},
|
||||
"namespace": {
|
||||
"description": "Namespace prefix to allow multiple webpack roots in the devtools.",
|
||||
"type": "string"
|
||||
},
|
||||
"noSources": {
|
||||
"description": "Omit the 'sourceContents' array from the SourceMap.",
|
||||
"type": "boolean"
|
||||
},
|
||||
"publicPath": {
|
||||
"description": "Provide a custom public path for the SourceMapping comment.",
|
||||
"type": "string"
|
||||
},
|
||||
"sourceRoot": {
|
||||
"description": "Provide a custom value for the 'sourceRoot' property in the SourceMap.",
|
||||
"type": "string"
|
||||
},
|
||||
"test": {
|
||||
"$ref": "#/definitions/rules"
|
||||
}
|
||||
}
|
||||
}
|
7
app_vue/node_modules/webpack/schemas/plugins/WatchIgnorePlugin.check.d.ts
generated
vendored
Normal file
7
app_vue/node_modules/webpack/schemas/plugins/WatchIgnorePlugin.check.d.ts
generated
vendored
Normal file
@ -0,0 +1,7 @@
|
||||
/*
|
||||
* This file was automatically generated.
|
||||
* DO NOT MODIFY BY HAND.
|
||||
* Run `yarn fix:special` to update
|
||||
*/
|
||||
declare const check: (options: import("../../declarations/plugins/WatchIgnorePlugin").WatchIgnorePluginOptions) => boolean;
|
||||
export = check;
|
6
app_vue/node_modules/webpack/schemas/plugins/WatchIgnorePlugin.check.js
generated
vendored
Normal file
6
app_vue/node_modules/webpack/schemas/plugins/WatchIgnorePlugin.check.js
generated
vendored
Normal file
@ -0,0 +1,6 @@
|
||||
/*
|
||||
* This file was automatically generated.
|
||||
* DO NOT MODIFY BY HAND.
|
||||
* Run `yarn fix:special` to update
|
||||
*/
|
||||
"use strict";function r(t,{instancePath:e="",parentData:s,parentDataProperty:a,rootData:n=t}={}){let o=null,i=0;if(0===i){if(!t||"object"!=typeof t||Array.isArray(t))return r.errors=[{params:{type:"object"}}],!1;{let e;if(void 0===t.paths&&(e="paths"))return r.errors=[{params:{missingProperty:e}}],!1;{const e=i;for(const e in t)if("paths"!==e)return r.errors=[{params:{additionalProperty:e}}],!1;if(e===i&&void 0!==t.paths){let e=t.paths;if(i==i){if(!Array.isArray(e))return r.errors=[{params:{type:"array"}}],!1;if(e.length<1)return r.errors=[{params:{limit:1}}],!1;{const t=e.length;for(let s=0;s<t;s++){let t=e[s];const a=i,n=i;let l=!1;const u=i;if(!(t instanceof RegExp)){const r={params:{}};null===o?o=[r]:o.push(r),i++}var p=u===i;if(l=l||p,!l){const r=i;if("string"!=typeof t){const r={params:{type:"string"}};null===o?o=[r]:o.push(r),i++}p=r===i,l=l||p}if(!l){const t={params:{}};return null===o?o=[t]:o.push(t),i++,r.errors=o,!1}if(i=n,null!==o&&(n?o.length=n:o=null),a!==i)break}}}}}}}return r.errors=o,0===i}module.exports=r,module.exports.default=r;
|
25
app_vue/node_modules/webpack/schemas/plugins/WatchIgnorePlugin.json
generated
vendored
Normal file
25
app_vue/node_modules/webpack/schemas/plugins/WatchIgnorePlugin.json
generated
vendored
Normal file
@ -0,0 +1,25 @@
|
||||
{
|
||||
"title": "WatchIgnorePluginOptions",
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"paths": {
|
||||
"description": "A list of RegExps or absolute paths to directories or files that should be ignored.",
|
||||
"type": "array",
|
||||
"items": {
|
||||
"description": "RegExp or absolute path to directories or files that should be ignored.",
|
||||
"anyOf": [
|
||||
{
|
||||
"instanceof": "RegExp",
|
||||
"tsType": "RegExp"
|
||||
},
|
||||
{
|
||||
"type": "string"
|
||||
}
|
||||
]
|
||||
},
|
||||
"minItems": 1
|
||||
}
|
||||
},
|
||||
"required": ["paths"]
|
||||
}
|
7
app_vue/node_modules/webpack/schemas/plugins/asset/AssetGeneratorOptions.check.d.ts
generated
vendored
Normal file
7
app_vue/node_modules/webpack/schemas/plugins/asset/AssetGeneratorOptions.check.d.ts
generated
vendored
Normal file
@ -0,0 +1,7 @@
|
||||
/*
|
||||
* This file was automatically generated.
|
||||
* DO NOT MODIFY BY HAND.
|
||||
* Run `yarn fix:special` to update
|
||||
*/
|
||||
declare const check: (options: any) => boolean;
|
||||
export = check;
|
6
app_vue/node_modules/webpack/schemas/plugins/asset/AssetGeneratorOptions.check.js
generated
vendored
Normal file
6
app_vue/node_modules/webpack/schemas/plugins/asset/AssetGeneratorOptions.check.js
generated
vendored
Normal file
@ -0,0 +1,6 @@
|
||||
/*
|
||||
* This file was automatically generated.
|
||||
* DO NOT MODIFY BY HAND.
|
||||
* Run `yarn fix:special` to update
|
||||
*/
|
||||
const t=/^(?:[A-Za-z]:[\\/]|\\\\|\/)/;function n(t,{instancePath:r="",parentData:e,parentDataProperty:a,rootData:s=t}={}){let o=null,l=0;const i=l;let p=!1;const u=l;if(l==l)if(t&&"object"==typeof t&&!Array.isArray(t)){const n=l;for(const n in t)if("encoding"!==n&&"mimetype"!==n){const t={params:{additionalProperty:n}};null===o?o=[t]:o.push(t),l++;break}if(n===l){if(void 0!==t.encoding){let n=t.encoding;const r=l;if(!1!==n&&"base64"!==n){const t={params:{}};null===o?o=[t]:o.push(t),l++}var c=r===l}else c=!0;if(c)if(void 0!==t.mimetype){const n=l;if("string"!=typeof t.mimetype){const t={params:{type:"string"}};null===o?o=[t]:o.push(t),l++}c=n===l}else c=!0}}else{const t={params:{type:"object"}};null===o?o=[t]:o.push(t),l++}var f=u===l;if(p=p||f,!p){const n=l;if(!(t instanceof Function)){const t={params:{}};null===o?o=[t]:o.push(t),l++}f=n===l,p=p||f}if(!p){const t={params:{}};return null===o?o=[t]:o.push(t),l++,n.errors=o,!1}return l=i,null!==o&&(i?o.length=i:o=null),n.errors=o,0===l}function r(e,{instancePath:a="",parentData:s,parentDataProperty:o,rootData:l=e}={}){let i=null,p=0;if(0===p){if(!e||"object"!=typeof e||Array.isArray(e))return r.errors=[{params:{type:"object"}}],!1;{const s=p;for(const t in e)if("binary"!==t&&"dataUrl"!==t&&"emit"!==t&&"filename"!==t&&"outputPath"!==t&&"publicPath"!==t)return r.errors=[{params:{additionalProperty:t}}],!1;if(s===p){if(void 0!==e.binary){const t=p;if("boolean"!=typeof e.binary)return r.errors=[{params:{type:"boolean"}}],!1;var u=t===p}else u=!0;if(u){if(void 0!==e.dataUrl){const t=p;n(e.dataUrl,{instancePath:a+"/dataUrl",parentData:e,parentDataProperty:"dataUrl",rootData:l})||(i=null===i?n.errors:i.concat(n.errors),p=i.length),u=t===p}else u=!0;if(u){if(void 0!==e.emit){const t=p;if("boolean"!=typeof e.emit)return r.errors=[{params:{type:"boolean"}}],!1;u=t===p}else u=!0;if(u){if(void 0!==e.filename){let n=e.filename;const a=p,s=p;let o=!1;const l=p;if(p===l)if("string"==typeof n){if(n.includes("!")||!1!==t.test(n)){const t={params:{}};null===i?i=[t]:i.push(t),p++}else if(n.length<1){const t={params:{}};null===i?i=[t]:i.push(t),p++}}else{const t={params:{type:"string"}};null===i?i=[t]:i.push(t),p++}var c=l===p;if(o=o||c,!o){const t=p;if(!(n instanceof Function)){const t={params:{}};null===i?i=[t]:i.push(t),p++}c=t===p,o=o||c}if(!o){const t={params:{}};return null===i?i=[t]:i.push(t),p++,r.errors=i,!1}p=s,null!==i&&(s?i.length=s:i=null),u=a===p}else u=!0;if(u){if(void 0!==e.outputPath){let n=e.outputPath;const a=p,s=p;let o=!1;const l=p;if(p===l)if("string"==typeof n){if(n.includes("!")||!1!==t.test(n)){const t={params:{}};null===i?i=[t]:i.push(t),p++}}else{const t={params:{type:"string"}};null===i?i=[t]:i.push(t),p++}var f=l===p;if(o=o||f,!o){const t=p;if(!(n instanceof Function)){const t={params:{}};null===i?i=[t]:i.push(t),p++}f=t===p,o=o||f}if(!o){const t={params:{}};return null===i?i=[t]:i.push(t),p++,r.errors=i,!1}p=s,null!==i&&(s?i.length=s:i=null),u=a===p}else u=!0;if(u)if(void 0!==e.publicPath){let t=e.publicPath;const n=p,a=p;let s=!1;const o=p;if("string"!=typeof t){const t={params:{type:"string"}};null===i?i=[t]:i.push(t),p++}var h=o===p;if(s=s||h,!s){const n=p;if(!(t instanceof Function)){const t={params:{}};null===i?i=[t]:i.push(t),p++}h=n===p,s=s||h}if(!s){const t={params:{}};return null===i?i=[t]:i.push(t),p++,r.errors=i,!1}p=a,null!==i&&(a?i.length=a:i=null),u=n===p}else u=!0}}}}}}}return r.errors=i,0===p}function e(t,{instancePath:n="",parentData:a,parentDataProperty:s,rootData:o=t}={}){let l=null,i=0;return r(t,{instancePath:n,parentData:a,parentDataProperty:s,rootData:o})||(l=null===l?r.errors:l.concat(r.errors),i=l.length),e.errors=l,0===i}module.exports=e,module.exports.default=e;
|
3
app_vue/node_modules/webpack/schemas/plugins/asset/AssetGeneratorOptions.json
generated
vendored
Normal file
3
app_vue/node_modules/webpack/schemas/plugins/asset/AssetGeneratorOptions.json
generated
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
{
|
||||
"$ref": "../../WebpackOptions.json#/definitions/AssetGeneratorOptions"
|
||||
}
|
7
app_vue/node_modules/webpack/schemas/plugins/asset/AssetInlineGeneratorOptions.check.d.ts
generated
vendored
Normal file
7
app_vue/node_modules/webpack/schemas/plugins/asset/AssetInlineGeneratorOptions.check.d.ts
generated
vendored
Normal file
@ -0,0 +1,7 @@
|
||||
/*
|
||||
* This file was automatically generated.
|
||||
* DO NOT MODIFY BY HAND.
|
||||
* Run `yarn fix:special` to update
|
||||
*/
|
||||
declare const check: (options: any) => boolean;
|
||||
export = check;
|
6
app_vue/node_modules/webpack/schemas/plugins/asset/AssetInlineGeneratorOptions.check.js
generated
vendored
Normal file
6
app_vue/node_modules/webpack/schemas/plugins/asset/AssetInlineGeneratorOptions.check.js
generated
vendored
Normal file
@ -0,0 +1,6 @@
|
||||
/*
|
||||
* This file was automatically generated.
|
||||
* DO NOT MODIFY BY HAND.
|
||||
* Run `yarn fix:special` to update
|
||||
*/
|
||||
"use strict";function t(r,{instancePath:a="",parentData:e,parentDataProperty:n,rootData:o=r}={}){let s=null,i=0;const l=i;let p=!1;const c=i;if(i==i)if(r&&"object"==typeof r&&!Array.isArray(r)){const t=i;for(const t in r)if("encoding"!==t&&"mimetype"!==t){const r={params:{additionalProperty:t}};null===s?s=[r]:s.push(r),i++;break}if(t===i){if(void 0!==r.encoding){let t=r.encoding;const a=i;if(!1!==t&&"base64"!==t){const t={params:{}};null===s?s=[t]:s.push(t),i++}var u=a===i}else u=!0;if(u)if(void 0!==r.mimetype){const t=i;if("string"!=typeof r.mimetype){const t={params:{type:"string"}};null===s?s=[t]:s.push(t),i++}u=t===i}else u=!0}}else{const t={params:{type:"object"}};null===s?s=[t]:s.push(t),i++}var f=c===i;if(p=p||f,!p){const t=i;if(!(r instanceof Function)){const t={params:{}};null===s?s=[t]:s.push(t),i++}f=t===i,p=p||f}if(!p){const r={params:{}};return null===s?s=[r]:s.push(r),i++,t.errors=s,!1}return i=l,null!==s&&(l?s.length=l:s=null),t.errors=s,0===i}function r(a,{instancePath:e="",parentData:n,parentDataProperty:o,rootData:s=a}={}){let i=null,l=0;if(0===l){if(!a||"object"!=typeof a||Array.isArray(a))return r.errors=[{params:{type:"object"}}],!1;{const n=l;for(const t in a)if("binary"!==t&&"dataUrl"!==t)return r.errors=[{params:{additionalProperty:t}}],!1;if(n===l){if(void 0!==a.binary){const t=l;if("boolean"!=typeof a.binary)return r.errors=[{params:{type:"boolean"}}],!1;var p=t===l}else p=!0;if(p)if(void 0!==a.dataUrl){const r=l;t(a.dataUrl,{instancePath:e+"/dataUrl",parentData:a,parentDataProperty:"dataUrl",rootData:s})||(i=null===i?t.errors:i.concat(t.errors),l=i.length),p=r===l}else p=!0}}}return r.errors=i,0===l}function a(t,{instancePath:e="",parentData:n,parentDataProperty:o,rootData:s=t}={}){let i=null,l=0;return r(t,{instancePath:e,parentData:n,parentDataProperty:o,rootData:s})||(i=null===i?r.errors:i.concat(r.errors),l=i.length),a.errors=i,0===l}module.exports=a,module.exports.default=a;
|
3
app_vue/node_modules/webpack/schemas/plugins/asset/AssetInlineGeneratorOptions.json
generated
vendored
Normal file
3
app_vue/node_modules/webpack/schemas/plugins/asset/AssetInlineGeneratorOptions.json
generated
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
{
|
||||
"$ref": "../../WebpackOptions.json#/definitions/AssetInlineGeneratorOptions"
|
||||
}
|
7
app_vue/node_modules/webpack/schemas/plugins/asset/AssetParserOptions.check.d.ts
generated
vendored
Normal file
7
app_vue/node_modules/webpack/schemas/plugins/asset/AssetParserOptions.check.d.ts
generated
vendored
Normal file
@ -0,0 +1,7 @@
|
||||
/*
|
||||
* This file was automatically generated.
|
||||
* DO NOT MODIFY BY HAND.
|
||||
* Run `yarn fix:special` to update
|
||||
*/
|
||||
declare const check: (options: any) => boolean;
|
||||
export = check;
|
6
app_vue/node_modules/webpack/schemas/plugins/asset/AssetParserOptions.check.js
generated
vendored
Normal file
6
app_vue/node_modules/webpack/schemas/plugins/asset/AssetParserOptions.check.js
generated
vendored
Normal file
@ -0,0 +1,6 @@
|
||||
/*
|
||||
* This file was automatically generated.
|
||||
* DO NOT MODIFY BY HAND.
|
||||
* Run `yarn fix:special` to update
|
||||
*/
|
||||
"use strict";function t(r,{instancePath:a="",parentData:n,parentDataProperty:o,rootData:e=r}={}){let s=null,i=0;if(0===i){if(!r||"object"!=typeof r||Array.isArray(r))return t.errors=[{params:{type:"object"}}],!1;{const a=i;for(const a in r)if("dataUrlCondition"!==a)return t.errors=[{params:{additionalProperty:a}}],!1;if(a===i&&void 0!==r.dataUrlCondition){let a=r.dataUrlCondition;const n=i;let o=!1;const e=i;if(i==i)if(a&&"object"==typeof a&&!Array.isArray(a)){const t=i;for(const t in a)if("maxSize"!==t){const r={params:{additionalProperty:t}};null===s?s=[r]:s.push(r),i++;break}if(t===i&&void 0!==a.maxSize&&"number"!=typeof a.maxSize){const t={params:{type:"number"}};null===s?s=[t]:s.push(t),i++}}else{const t={params:{type:"object"}};null===s?s=[t]:s.push(t),i++}var l=e===i;if(o=o||l,!o){const t=i;if(!(a instanceof Function)){const t={params:{}};null===s?s=[t]:s.push(t),i++}l=t===i,o=o||l}if(!o){const r={params:{}};return null===s?s=[r]:s.push(r),i++,t.errors=s,!1}i=n,null!==s&&(n?s.length=n:s=null)}}}return t.errors=s,0===i}function r(a,{instancePath:n="",parentData:o,parentDataProperty:e,rootData:s=a}={}){let i=null,l=0;return t(a,{instancePath:n,parentData:o,parentDataProperty:e,rootData:s})||(i=null===i?t.errors:i.concat(t.errors),l=i.length),r.errors=i,0===l}module.exports=r,module.exports.default=r;
|
3
app_vue/node_modules/webpack/schemas/plugins/asset/AssetParserOptions.json
generated
vendored
Normal file
3
app_vue/node_modules/webpack/schemas/plugins/asset/AssetParserOptions.json
generated
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
{
|
||||
"$ref": "../../WebpackOptions.json#/definitions/AssetParserOptions"
|
||||
}
|
7
app_vue/node_modules/webpack/schemas/plugins/asset/AssetResourceGeneratorOptions.check.d.ts
generated
vendored
Normal file
7
app_vue/node_modules/webpack/schemas/plugins/asset/AssetResourceGeneratorOptions.check.d.ts
generated
vendored
Normal file
@ -0,0 +1,7 @@
|
||||
/*
|
||||
* This file was automatically generated.
|
||||
* DO NOT MODIFY BY HAND.
|
||||
* Run `yarn fix:special` to update
|
||||
*/
|
||||
declare const check: (options: any) => boolean;
|
||||
export = check;
|
6
app_vue/node_modules/webpack/schemas/plugins/asset/AssetResourceGeneratorOptions.check.js
generated
vendored
Normal file
6
app_vue/node_modules/webpack/schemas/plugins/asset/AssetResourceGeneratorOptions.check.js
generated
vendored
Normal file
@ -0,0 +1,6 @@
|
||||
/*
|
||||
* This file was automatically generated.
|
||||
* DO NOT MODIFY BY HAND.
|
||||
* Run `yarn fix:special` to update
|
||||
*/
|
||||
const t=/^(?:[A-Za-z]:[\\/]|\\\\|\/)/;function n(r,{instancePath:e="",parentData:a,parentDataProperty:s,rootData:o=r}={}){let l=null,i=0;if(0===i){if(!r||"object"!=typeof r||Array.isArray(r))return n.errors=[{params:{type:"object"}}],!1;{const e=i;for(const t in r)if("binary"!==t&&"emit"!==t&&"filename"!==t&&"outputPath"!==t&&"publicPath"!==t)return n.errors=[{params:{additionalProperty:t}}],!1;if(e===i){if(void 0!==r.binary){const t=i;if("boolean"!=typeof r.binary)return n.errors=[{params:{type:"boolean"}}],!1;var u=t===i}else u=!0;if(u){if(void 0!==r.emit){const t=i;if("boolean"!=typeof r.emit)return n.errors=[{params:{type:"boolean"}}],!1;u=t===i}else u=!0;if(u){if(void 0!==r.filename){let e=r.filename;const a=i,s=i;let o=!1;const f=i;if(i===f)if("string"==typeof e){if(e.includes("!")||!1!==t.test(e)){const t={params:{}};null===l?l=[t]:l.push(t),i++}else if(e.length<1){const t={params:{}};null===l?l=[t]:l.push(t),i++}}else{const t={params:{type:"string"}};null===l?l=[t]:l.push(t),i++}var p=f===i;if(o=o||p,!o){const t=i;if(!(e instanceof Function)){const t={params:{}};null===l?l=[t]:l.push(t),i++}p=t===i,o=o||p}if(!o){const t={params:{}};return null===l?l=[t]:l.push(t),i++,n.errors=l,!1}i=s,null!==l&&(s?l.length=s:l=null),u=a===i}else u=!0;if(u){if(void 0!==r.outputPath){let e=r.outputPath;const a=i,s=i;let o=!1;const p=i;if(i===p)if("string"==typeof e){if(e.includes("!")||!1!==t.test(e)){const t={params:{}};null===l?l=[t]:l.push(t),i++}}else{const t={params:{type:"string"}};null===l?l=[t]:l.push(t),i++}var f=p===i;if(o=o||f,!o){const t=i;if(!(e instanceof Function)){const t={params:{}};null===l?l=[t]:l.push(t),i++}f=t===i,o=o||f}if(!o){const t={params:{}};return null===l?l=[t]:l.push(t),i++,n.errors=l,!1}i=s,null!==l&&(s?l.length=s:l=null),u=a===i}else u=!0;if(u)if(void 0!==r.publicPath){let t=r.publicPath;const e=i,a=i;let s=!1;const o=i;if("string"!=typeof t){const t={params:{type:"string"}};null===l?l=[t]:l.push(t),i++}var c=o===i;if(s=s||c,!s){const n=i;if(!(t instanceof Function)){const t={params:{}};null===l?l=[t]:l.push(t),i++}c=n===i,s=s||c}if(!s){const t={params:{}};return null===l?l=[t]:l.push(t),i++,n.errors=l,!1}i=a,null!==l&&(a?l.length=a:l=null),u=e===i}else u=!0}}}}}}return n.errors=l,0===i}function r(t,{instancePath:e="",parentData:a,parentDataProperty:s,rootData:o=t}={}){let l=null,i=0;return n(t,{instancePath:e,parentData:a,parentDataProperty:s,rootData:o})||(l=null===l?n.errors:l.concat(n.errors),i=l.length),r.errors=l,0===i}module.exports=r,module.exports.default=r;
|
3
app_vue/node_modules/webpack/schemas/plugins/asset/AssetResourceGeneratorOptions.json
generated
vendored
Normal file
3
app_vue/node_modules/webpack/schemas/plugins/asset/AssetResourceGeneratorOptions.json
generated
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
{
|
||||
"$ref": "../../WebpackOptions.json#/definitions/AssetResourceGeneratorOptions"
|
||||
}
|
7
app_vue/node_modules/webpack/schemas/plugins/container/ContainerPlugin.check.d.ts
generated
vendored
Normal file
7
app_vue/node_modules/webpack/schemas/plugins/container/ContainerPlugin.check.d.ts
generated
vendored
Normal file
@ -0,0 +1,7 @@
|
||||
/*
|
||||
* This file was automatically generated.
|
||||
* DO NOT MODIFY BY HAND.
|
||||
* Run `yarn fix:special` to update
|
||||
*/
|
||||
declare const check: (options: import("../../../declarations/plugins/container/ContainerPlugin").ContainerPluginOptions) => boolean;
|
||||
export = check;
|
6
app_vue/node_modules/webpack/schemas/plugins/container/ContainerPlugin.check.js
generated
vendored
Normal file
6
app_vue/node_modules/webpack/schemas/plugins/container/ContainerPlugin.check.js
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
294
app_vue/node_modules/webpack/schemas/plugins/container/ContainerPlugin.json
generated
vendored
Normal file
294
app_vue/node_modules/webpack/schemas/plugins/container/ContainerPlugin.json
generated
vendored
Normal file
@ -0,0 +1,294 @@
|
||||
{
|
||||
"definitions": {
|
||||
"AmdContainer": {
|
||||
"description": "Add a container for define/require functions in the AMD module.",
|
||||
"type": "string",
|
||||
"minLength": 1
|
||||
},
|
||||
"AuxiliaryComment": {
|
||||
"description": "Add a comment in the UMD wrapper.",
|
||||
"anyOf": [
|
||||
{
|
||||
"description": "Append the same comment above each import style.",
|
||||
"type": "string"
|
||||
},
|
||||
{
|
||||
"$ref": "#/definitions/LibraryCustomUmdCommentObject"
|
||||
}
|
||||
]
|
||||
},
|
||||
"EntryRuntime": {
|
||||
"description": "The name of the runtime chunk. If set a runtime chunk with this name is created or an existing entrypoint is used as runtime.",
|
||||
"anyOf": [
|
||||
{
|
||||
"enum": [false]
|
||||
},
|
||||
{
|
||||
"type": "string",
|
||||
"minLength": 1
|
||||
}
|
||||
]
|
||||
},
|
||||
"Exposes": {
|
||||
"description": "Modules that should be exposed by this container. When provided, property name is used as public name, otherwise public name is automatically inferred from request.",
|
||||
"anyOf": [
|
||||
{
|
||||
"type": "array",
|
||||
"items": {
|
||||
"description": "Modules that should be exposed by this container.",
|
||||
"anyOf": [
|
||||
{
|
||||
"$ref": "#/definitions/ExposesItem"
|
||||
},
|
||||
{
|
||||
"$ref": "#/definitions/ExposesObject"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"$ref": "#/definitions/ExposesObject"
|
||||
}
|
||||
]
|
||||
},
|
||||
"ExposesConfig": {
|
||||
"description": "Advanced configuration for modules that should be exposed by this container.",
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"import": {
|
||||
"description": "Request to a module that should be exposed by this container.",
|
||||
"anyOf": [
|
||||
{
|
||||
"$ref": "#/definitions/ExposesItem"
|
||||
},
|
||||
{
|
||||
"$ref": "#/definitions/ExposesItems"
|
||||
}
|
||||
]
|
||||
},
|
||||
"name": {
|
||||
"description": "Custom chunk name for the exposed module.",
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": ["import"]
|
||||
},
|
||||
"ExposesItem": {
|
||||
"description": "Module that should be exposed by this container.",
|
||||
"type": "string",
|
||||
"minLength": 1
|
||||
},
|
||||
"ExposesItems": {
|
||||
"description": "Modules that should be exposed by this container.",
|
||||
"type": "array",
|
||||
"items": {
|
||||
"$ref": "#/definitions/ExposesItem"
|
||||
}
|
||||
},
|
||||
"ExposesObject": {
|
||||
"description": "Modules that should be exposed by this container. Property names are used as public paths.",
|
||||
"type": "object",
|
||||
"additionalProperties": {
|
||||
"description": "Modules that should be exposed by this container.",
|
||||
"anyOf": [
|
||||
{
|
||||
"$ref": "#/definitions/ExposesConfig"
|
||||
},
|
||||
{
|
||||
"$ref": "#/definitions/ExposesItem"
|
||||
},
|
||||
{
|
||||
"$ref": "#/definitions/ExposesItems"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"LibraryCustomUmdCommentObject": {
|
||||
"description": "Set explicit comments for `commonjs`, `commonjs2`, `amd`, and `root`.",
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"amd": {
|
||||
"description": "Set comment for `amd` section in UMD.",
|
||||
"type": "string"
|
||||
},
|
||||
"commonjs": {
|
||||
"description": "Set comment for `commonjs` (exports) section in UMD.",
|
||||
"type": "string"
|
||||
},
|
||||
"commonjs2": {
|
||||
"description": "Set comment for `commonjs2` (module.exports) section in UMD.",
|
||||
"type": "string"
|
||||
},
|
||||
"root": {
|
||||
"description": "Set comment for `root` (global variable) section in UMD.",
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
},
|
||||
"LibraryCustomUmdObject": {
|
||||
"description": "Description object for all UMD variants of the library name.",
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"amd": {
|
||||
"description": "Name of the exposed AMD library in the UMD.",
|
||||
"type": "string",
|
||||
"minLength": 1
|
||||
},
|
||||
"commonjs": {
|
||||
"description": "Name of the exposed commonjs export in the UMD.",
|
||||
"type": "string",
|
||||
"minLength": 1
|
||||
},
|
||||
"root": {
|
||||
"description": "Name of the property exposed globally by a UMD library.",
|
||||
"anyOf": [
|
||||
{
|
||||
"type": "array",
|
||||
"items": {
|
||||
"description": "Part of the name of the property exposed globally by a UMD library.",
|
||||
"type": "string",
|
||||
"minLength": 1
|
||||
}
|
||||
},
|
||||
{
|
||||
"type": "string",
|
||||
"minLength": 1
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
"LibraryExport": {
|
||||
"description": "Specify which export should be exposed as library.",
|
||||
"anyOf": [
|
||||
{
|
||||
"type": "array",
|
||||
"items": {
|
||||
"description": "Part of the export that should be exposed as library.",
|
||||
"type": "string",
|
||||
"minLength": 1
|
||||
}
|
||||
},
|
||||
{
|
||||
"type": "string",
|
||||
"minLength": 1
|
||||
}
|
||||
]
|
||||
},
|
||||
"LibraryName": {
|
||||
"description": "The name of the library (some types allow unnamed libraries too).",
|
||||
"anyOf": [
|
||||
{
|
||||
"type": "array",
|
||||
"items": {
|
||||
"description": "A part of the library name.",
|
||||
"type": "string",
|
||||
"minLength": 1
|
||||
},
|
||||
"minItems": 1
|
||||
},
|
||||
{
|
||||
"type": "string",
|
||||
"minLength": 1
|
||||
},
|
||||
{
|
||||
"$ref": "#/definitions/LibraryCustomUmdObject"
|
||||
}
|
||||
]
|
||||
},
|
||||
"LibraryOptions": {
|
||||
"description": "Options for library.",
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"amdContainer": {
|
||||
"$ref": "#/definitions/AmdContainer"
|
||||
},
|
||||
"auxiliaryComment": {
|
||||
"$ref": "#/definitions/AuxiliaryComment"
|
||||
},
|
||||
"export": {
|
||||
"$ref": "#/definitions/LibraryExport"
|
||||
},
|
||||
"name": {
|
||||
"$ref": "#/definitions/LibraryName"
|
||||
},
|
||||
"type": {
|
||||
"$ref": "#/definitions/LibraryType"
|
||||
},
|
||||
"umdNamedDefine": {
|
||||
"$ref": "#/definitions/UmdNamedDefine"
|
||||
}
|
||||
},
|
||||
"required": ["type"]
|
||||
},
|
||||
"LibraryType": {
|
||||
"description": "Type of library (types included by default are 'var', 'module', 'assign', 'assign-properties', 'this', 'window', 'self', 'global', 'commonjs', 'commonjs2', 'commonjs-module', 'commonjs-static', 'amd', 'amd-require', 'umd', 'umd2', 'jsonp', 'system', but others might be added by plugins).",
|
||||
"anyOf": [
|
||||
{
|
||||
"enum": [
|
||||
"var",
|
||||
"module",
|
||||
"assign",
|
||||
"assign-properties",
|
||||
"this",
|
||||
"window",
|
||||
"self",
|
||||
"global",
|
||||
"commonjs",
|
||||
"commonjs2",
|
||||
"commonjs-module",
|
||||
"commonjs-static",
|
||||
"amd",
|
||||
"amd-require",
|
||||
"umd",
|
||||
"umd2",
|
||||
"jsonp",
|
||||
"system"
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "string"
|
||||
}
|
||||
]
|
||||
},
|
||||
"UmdNamedDefine": {
|
||||
"description": "If `output.libraryTarget` is set to umd and `output.library` is set, setting this to true will name the AMD module.",
|
||||
"type": "boolean"
|
||||
}
|
||||
},
|
||||
"title": "ContainerPluginOptions",
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"exposes": {
|
||||
"$ref": "#/definitions/Exposes"
|
||||
},
|
||||
"filename": {
|
||||
"description": "The filename for this container relative path inside the `output.path` directory.",
|
||||
"type": "string",
|
||||
"absolutePath": false,
|
||||
"minLength": 1
|
||||
},
|
||||
"library": {
|
||||
"$ref": "#/definitions/LibraryOptions"
|
||||
},
|
||||
"name": {
|
||||
"description": "The name for this container.",
|
||||
"type": "string",
|
||||
"minLength": 1
|
||||
},
|
||||
"runtime": {
|
||||
"$ref": "#/definitions/EntryRuntime"
|
||||
},
|
||||
"shareScope": {
|
||||
"description": "The name of the share scope which is shared with the host (defaults to 'default').",
|
||||
"type": "string",
|
||||
"minLength": 1
|
||||
}
|
||||
},
|
||||
"required": ["name", "exposes"]
|
||||
}
|
7
app_vue/node_modules/webpack/schemas/plugins/container/ContainerReferencePlugin.check.d.ts
generated
vendored
Normal file
7
app_vue/node_modules/webpack/schemas/plugins/container/ContainerReferencePlugin.check.d.ts
generated
vendored
Normal file
@ -0,0 +1,7 @@
|
||||
/*
|
||||
* This file was automatically generated.
|
||||
* DO NOT MODIFY BY HAND.
|
||||
* Run `yarn fix:special` to update
|
||||
*/
|
||||
declare const check: (options: import("../../../declarations/plugins/container/ContainerReferencePlugin").ContainerReferencePluginOptions) => boolean;
|
||||
export = check;
|
6
app_vue/node_modules/webpack/schemas/plugins/container/ContainerReferencePlugin.check.js
generated
vendored
Normal file
6
app_vue/node_modules/webpack/schemas/plugins/container/ContainerReferencePlugin.check.js
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
129
app_vue/node_modules/webpack/schemas/plugins/container/ContainerReferencePlugin.json
generated
vendored
Normal file
129
app_vue/node_modules/webpack/schemas/plugins/container/ContainerReferencePlugin.json
generated
vendored
Normal file
@ -0,0 +1,129 @@
|
||||
{
|
||||
"definitions": {
|
||||
"ExternalsType": {
|
||||
"description": "Specifies the default type of externals ('amd*', 'umd*', 'system' and 'jsonp' depend on output.libraryTarget set to the same value).",
|
||||
"enum": [
|
||||
"var",
|
||||
"module",
|
||||
"assign",
|
||||
"this",
|
||||
"window",
|
||||
"self",
|
||||
"global",
|
||||
"commonjs",
|
||||
"commonjs2",
|
||||
"commonjs-module",
|
||||
"commonjs-static",
|
||||
"amd",
|
||||
"amd-require",
|
||||
"umd",
|
||||
"umd2",
|
||||
"jsonp",
|
||||
"system",
|
||||
"promise",
|
||||
"import",
|
||||
"module-import",
|
||||
"script",
|
||||
"node-commonjs"
|
||||
]
|
||||
},
|
||||
"Remotes": {
|
||||
"description": "Container locations and request scopes from which modules should be resolved and loaded at runtime. When provided, property name is used as request scope, otherwise request scope is automatically inferred from container location.",
|
||||
"anyOf": [
|
||||
{
|
||||
"type": "array",
|
||||
"items": {
|
||||
"description": "Container locations and request scopes from which modules should be resolved and loaded at runtime.",
|
||||
"anyOf": [
|
||||
{
|
||||
"$ref": "#/definitions/RemotesItem"
|
||||
},
|
||||
{
|
||||
"$ref": "#/definitions/RemotesObject"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"$ref": "#/definitions/RemotesObject"
|
||||
}
|
||||
]
|
||||
},
|
||||
"RemotesConfig": {
|
||||
"description": "Advanced configuration for container locations from which modules should be resolved and loaded at runtime.",
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"external": {
|
||||
"description": "Container locations from which modules should be resolved and loaded at runtime.",
|
||||
"anyOf": [
|
||||
{
|
||||
"$ref": "#/definitions/RemotesItem"
|
||||
},
|
||||
{
|
||||
"$ref": "#/definitions/RemotesItems"
|
||||
}
|
||||
]
|
||||
},
|
||||
"shareScope": {
|
||||
"description": "The name of the share scope shared with this remote.",
|
||||
"type": "string",
|
||||
"minLength": 1
|
||||
}
|
||||
},
|
||||
"required": ["external"]
|
||||
},
|
||||
"RemotesItem": {
|
||||
"description": "Container location from which modules should be resolved and loaded at runtime.",
|
||||
"type": "string",
|
||||
"minLength": 1
|
||||
},
|
||||
"RemotesItems": {
|
||||
"description": "Container locations from which modules should be resolved and loaded at runtime.",
|
||||
"type": "array",
|
||||
"items": {
|
||||
"$ref": "#/definitions/RemotesItem"
|
||||
}
|
||||
},
|
||||
"RemotesObject": {
|
||||
"description": "Container locations from which modules should be resolved and loaded at runtime. Property names are used as request scopes.",
|
||||
"type": "object",
|
||||
"additionalProperties": {
|
||||
"description": "Container locations from which modules should be resolved and loaded at runtime.",
|
||||
"anyOf": [
|
||||
{
|
||||
"$ref": "#/definitions/RemotesConfig"
|
||||
},
|
||||
{
|
||||
"$ref": "#/definitions/RemotesItem"
|
||||
},
|
||||
{
|
||||
"$ref": "#/definitions/RemotesItems"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
"title": "ContainerReferencePluginOptions",
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"remoteType": {
|
||||
"description": "The external type of the remote containers.",
|
||||
"oneOf": [
|
||||
{
|
||||
"$ref": "#/definitions/ExternalsType"
|
||||
}
|
||||
]
|
||||
},
|
||||
"remotes": {
|
||||
"$ref": "#/definitions/Remotes"
|
||||
},
|
||||
"shareScope": {
|
||||
"description": "The name of the share scope shared with all remotes (defaults to 'default').",
|
||||
"type": "string",
|
||||
"minLength": 1
|
||||
}
|
||||
},
|
||||
"required": ["remoteType", "remotes"]
|
||||
}
|
7
app_vue/node_modules/webpack/schemas/plugins/container/ExternalsType.check.d.ts
generated
vendored
Normal file
7
app_vue/node_modules/webpack/schemas/plugins/container/ExternalsType.check.d.ts
generated
vendored
Normal file
@ -0,0 +1,7 @@
|
||||
/*
|
||||
* This file was automatically generated.
|
||||
* DO NOT MODIFY BY HAND.
|
||||
* Run `yarn fix:special` to update
|
||||
*/
|
||||
declare const check: (options: any) => boolean;
|
||||
export = check;
|
6
app_vue/node_modules/webpack/schemas/plugins/container/ExternalsType.check.js
generated
vendored
Normal file
6
app_vue/node_modules/webpack/schemas/plugins/container/ExternalsType.check.js
generated
vendored
Normal file
@ -0,0 +1,6 @@
|
||||
/*
|
||||
* This file was automatically generated.
|
||||
* DO NOT MODIFY BY HAND.
|
||||
* Run `yarn fix:special` to update
|
||||
*/
|
||||
"use strict";function o(m,{instancePath:r="",parentData:s,parentDataProperty:t,rootData:e=m}={}){return"var"!==m&&"module"!==m&&"assign"!==m&&"this"!==m&&"window"!==m&&"self"!==m&&"global"!==m&&"commonjs"!==m&&"commonjs2"!==m&&"commonjs-module"!==m&&"commonjs-static"!==m&&"amd"!==m&&"amd-require"!==m&&"umd"!==m&&"umd2"!==m&&"jsonp"!==m&&"system"!==m&&"promise"!==m&&"import"!==m&&"module-import"!==m&&"script"!==m&&"node-commonjs"!==m?(o.errors=[{params:{}}],!1):(o.errors=null,!0)}module.exports=o,module.exports.default=o;
|
3
app_vue/node_modules/webpack/schemas/plugins/container/ExternalsType.json
generated
vendored
Normal file
3
app_vue/node_modules/webpack/schemas/plugins/container/ExternalsType.json
generated
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
{
|
||||
"$ref": "./ModuleFederationPlugin.json#/definitions/ExternalsType"
|
||||
}
|
7
app_vue/node_modules/webpack/schemas/plugins/container/ModuleFederationPlugin.check.d.ts
generated
vendored
Normal file
7
app_vue/node_modules/webpack/schemas/plugins/container/ModuleFederationPlugin.check.d.ts
generated
vendored
Normal file
@ -0,0 +1,7 @@
|
||||
/*
|
||||
* This file was automatically generated.
|
||||
* DO NOT MODIFY BY HAND.
|
||||
* Run `yarn fix:special` to update
|
||||
*/
|
||||
declare const check: (options: import("../../../declarations/plugins/container/ModuleFederationPlugin").ModuleFederationPluginOptions) => boolean;
|
||||
export = check;
|
6
app_vue/node_modules/webpack/schemas/plugins/container/ModuleFederationPlugin.check.js
generated
vendored
Normal file
6
app_vue/node_modules/webpack/schemas/plugins/container/ModuleFederationPlugin.check.js
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
522
app_vue/node_modules/webpack/schemas/plugins/container/ModuleFederationPlugin.json
generated
vendored
Normal file
522
app_vue/node_modules/webpack/schemas/plugins/container/ModuleFederationPlugin.json
generated
vendored
Normal file
@ -0,0 +1,522 @@
|
||||
{
|
||||
"definitions": {
|
||||
"AmdContainer": {
|
||||
"description": "Add a container for define/require functions in the AMD module.",
|
||||
"type": "string",
|
||||
"minLength": 1
|
||||
},
|
||||
"AuxiliaryComment": {
|
||||
"description": "Add a comment in the UMD wrapper.",
|
||||
"anyOf": [
|
||||
{
|
||||
"description": "Append the same comment above each import style.",
|
||||
"type": "string"
|
||||
},
|
||||
{
|
||||
"$ref": "#/definitions/LibraryCustomUmdCommentObject"
|
||||
}
|
||||
]
|
||||
},
|
||||
"EntryRuntime": {
|
||||
"description": "The name of the runtime chunk. If set a runtime chunk with this name is created or an existing entrypoint is used as runtime.",
|
||||
"anyOf": [
|
||||
{
|
||||
"enum": [false]
|
||||
},
|
||||
{
|
||||
"type": "string",
|
||||
"minLength": 1
|
||||
}
|
||||
]
|
||||
},
|
||||
"Exposes": {
|
||||
"description": "Modules that should be exposed by this container. When provided, property name is used as public name, otherwise public name is automatically inferred from request.",
|
||||
"anyOf": [
|
||||
{
|
||||
"type": "array",
|
||||
"items": {
|
||||
"description": "Modules that should be exposed by this container.",
|
||||
"anyOf": [
|
||||
{
|
||||
"$ref": "#/definitions/ExposesItem"
|
||||
},
|
||||
{
|
||||
"$ref": "#/definitions/ExposesObject"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"$ref": "#/definitions/ExposesObject"
|
||||
}
|
||||
]
|
||||
},
|
||||
"ExposesConfig": {
|
||||
"description": "Advanced configuration for modules that should be exposed by this container.",
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"import": {
|
||||
"description": "Request to a module that should be exposed by this container.",
|
||||
"anyOf": [
|
||||
{
|
||||
"$ref": "#/definitions/ExposesItem"
|
||||
},
|
||||
{
|
||||
"$ref": "#/definitions/ExposesItems"
|
||||
}
|
||||
]
|
||||
},
|
||||
"name": {
|
||||
"description": "Custom chunk name for the exposed module.",
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": ["import"]
|
||||
},
|
||||
"ExposesItem": {
|
||||
"description": "Module that should be exposed by this container.",
|
||||
"type": "string",
|
||||
"minLength": 1
|
||||
},
|
||||
"ExposesItems": {
|
||||
"description": "Modules that should be exposed by this container.",
|
||||
"type": "array",
|
||||
"items": {
|
||||
"$ref": "#/definitions/ExposesItem"
|
||||
}
|
||||
},
|
||||
"ExposesObject": {
|
||||
"description": "Modules that should be exposed by this container. Property names are used as public paths.",
|
||||
"type": "object",
|
||||
"additionalProperties": {
|
||||
"description": "Modules that should be exposed by this container.",
|
||||
"anyOf": [
|
||||
{
|
||||
"$ref": "#/definitions/ExposesConfig"
|
||||
},
|
||||
{
|
||||
"$ref": "#/definitions/ExposesItem"
|
||||
},
|
||||
{
|
||||
"$ref": "#/definitions/ExposesItems"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"ExternalsType": {
|
||||
"description": "Specifies the default type of externals ('amd*', 'umd*', 'system' and 'jsonp' depend on output.libraryTarget set to the same value).",
|
||||
"enum": [
|
||||
"var",
|
||||
"module",
|
||||
"assign",
|
||||
"this",
|
||||
"window",
|
||||
"self",
|
||||
"global",
|
||||
"commonjs",
|
||||
"commonjs2",
|
||||
"commonjs-module",
|
||||
"commonjs-static",
|
||||
"amd",
|
||||
"amd-require",
|
||||
"umd",
|
||||
"umd2",
|
||||
"jsonp",
|
||||
"system",
|
||||
"promise",
|
||||
"import",
|
||||
"module-import",
|
||||
"script",
|
||||
"node-commonjs"
|
||||
]
|
||||
},
|
||||
"LibraryCustomUmdCommentObject": {
|
||||
"description": "Set explicit comments for `commonjs`, `commonjs2`, `amd`, and `root`.",
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"amd": {
|
||||
"description": "Set comment for `amd` section in UMD.",
|
||||
"type": "string"
|
||||
},
|
||||
"commonjs": {
|
||||
"description": "Set comment for `commonjs` (exports) section in UMD.",
|
||||
"type": "string"
|
||||
},
|
||||
"commonjs2": {
|
||||
"description": "Set comment for `commonjs2` (module.exports) section in UMD.",
|
||||
"type": "string"
|
||||
},
|
||||
"root": {
|
||||
"description": "Set comment for `root` (global variable) section in UMD.",
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
},
|
||||
"LibraryCustomUmdObject": {
|
||||
"description": "Description object for all UMD variants of the library name.",
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"amd": {
|
||||
"description": "Name of the exposed AMD library in the UMD.",
|
||||
"type": "string",
|
||||
"minLength": 1
|
||||
},
|
||||
"commonjs": {
|
||||
"description": "Name of the exposed commonjs export in the UMD.",
|
||||
"type": "string",
|
||||
"minLength": 1
|
||||
},
|
||||
"root": {
|
||||
"description": "Name of the property exposed globally by a UMD library.",
|
||||
"anyOf": [
|
||||
{
|
||||
"type": "array",
|
||||
"items": {
|
||||
"description": "Part of the name of the property exposed globally by a UMD library.",
|
||||
"type": "string",
|
||||
"minLength": 1
|
||||
}
|
||||
},
|
||||
{
|
||||
"type": "string",
|
||||
"minLength": 1
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
"LibraryExport": {
|
||||
"description": "Specify which export should be exposed as library.",
|
||||
"anyOf": [
|
||||
{
|
||||
"type": "array",
|
||||
"items": {
|
||||
"description": "Part of the export that should be exposed as library.",
|
||||
"type": "string",
|
||||
"minLength": 1
|
||||
}
|
||||
},
|
||||
{
|
||||
"type": "string",
|
||||
"minLength": 1
|
||||
}
|
||||
]
|
||||
},
|
||||
"LibraryName": {
|
||||
"description": "The name of the library (some types allow unnamed libraries too).",
|
||||
"anyOf": [
|
||||
{
|
||||
"type": "array",
|
||||
"items": {
|
||||
"description": "A part of the library name.",
|
||||
"type": "string",
|
||||
"minLength": 1
|
||||
},
|
||||
"minItems": 1
|
||||
},
|
||||
{
|
||||
"type": "string",
|
||||
"minLength": 1
|
||||
},
|
||||
{
|
||||
"$ref": "#/definitions/LibraryCustomUmdObject"
|
||||
}
|
||||
]
|
||||
},
|
||||
"LibraryOptions": {
|
||||
"description": "Options for library.",
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"amdContainer": {
|
||||
"$ref": "#/definitions/AmdContainer"
|
||||
},
|
||||
"auxiliaryComment": {
|
||||
"$ref": "#/definitions/AuxiliaryComment"
|
||||
},
|
||||
"export": {
|
||||
"$ref": "#/definitions/LibraryExport"
|
||||
},
|
||||
"name": {
|
||||
"$ref": "#/definitions/LibraryName"
|
||||
},
|
||||
"type": {
|
||||
"$ref": "#/definitions/LibraryType"
|
||||
},
|
||||
"umdNamedDefine": {
|
||||
"$ref": "#/definitions/UmdNamedDefine"
|
||||
}
|
||||
},
|
||||
"required": ["type"]
|
||||
},
|
||||
"LibraryType": {
|
||||
"description": "Type of library (types included by default are 'var', 'module', 'assign', 'assign-properties', 'this', 'window', 'self', 'global', 'commonjs', 'commonjs2', 'commonjs-module', 'commonjs-static', 'amd', 'amd-require', 'umd', 'umd2', 'jsonp', 'system', but others might be added by plugins).",
|
||||
"anyOf": [
|
||||
{
|
||||
"enum": [
|
||||
"var",
|
||||
"module",
|
||||
"assign",
|
||||
"assign-properties",
|
||||
"this",
|
||||
"window",
|
||||
"self",
|
||||
"global",
|
||||
"commonjs",
|
||||
"commonjs2",
|
||||
"commonjs-module",
|
||||
"commonjs-static",
|
||||
"amd",
|
||||
"amd-require",
|
||||
"umd",
|
||||
"umd2",
|
||||
"jsonp",
|
||||
"system"
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "string"
|
||||
}
|
||||
]
|
||||
},
|
||||
"Remotes": {
|
||||
"description": "Container locations and request scopes from which modules should be resolved and loaded at runtime. When provided, property name is used as request scope, otherwise request scope is automatically inferred from container location.",
|
||||
"anyOf": [
|
||||
{
|
||||
"type": "array",
|
||||
"items": {
|
||||
"description": "Container locations and request scopes from which modules should be resolved and loaded at runtime.",
|
||||
"anyOf": [
|
||||
{
|
||||
"$ref": "#/definitions/RemotesItem"
|
||||
},
|
||||
{
|
||||
"$ref": "#/definitions/RemotesObject"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"$ref": "#/definitions/RemotesObject"
|
||||
}
|
||||
]
|
||||
},
|
||||
"RemotesConfig": {
|
||||
"description": "Advanced configuration for container locations from which modules should be resolved and loaded at runtime.",
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"external": {
|
||||
"description": "Container locations from which modules should be resolved and loaded at runtime.",
|
||||
"anyOf": [
|
||||
{
|
||||
"$ref": "#/definitions/RemotesItem"
|
||||
},
|
||||
{
|
||||
"$ref": "#/definitions/RemotesItems"
|
||||
}
|
||||
]
|
||||
},
|
||||
"shareScope": {
|
||||
"description": "The name of the share scope shared with this remote.",
|
||||
"type": "string",
|
||||
"minLength": 1
|
||||
}
|
||||
},
|
||||
"required": ["external"]
|
||||
},
|
||||
"RemotesItem": {
|
||||
"description": "Container location from which modules should be resolved and loaded at runtime.",
|
||||
"type": "string",
|
||||
"minLength": 1
|
||||
},
|
||||
"RemotesItems": {
|
||||
"description": "Container locations from which modules should be resolved and loaded at runtime.",
|
||||
"type": "array",
|
||||
"items": {
|
||||
"$ref": "#/definitions/RemotesItem"
|
||||
}
|
||||
},
|
||||
"RemotesObject": {
|
||||
"description": "Container locations from which modules should be resolved and loaded at runtime. Property names are used as request scopes.",
|
||||
"type": "object",
|
||||
"additionalProperties": {
|
||||
"description": "Container locations from which modules should be resolved and loaded at runtime.",
|
||||
"anyOf": [
|
||||
{
|
||||
"$ref": "#/definitions/RemotesConfig"
|
||||
},
|
||||
{
|
||||
"$ref": "#/definitions/RemotesItem"
|
||||
},
|
||||
{
|
||||
"$ref": "#/definitions/RemotesItems"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"Shared": {
|
||||
"description": "Modules that should be shared in the share scope. When provided, property names are used to match requested modules in this compilation.",
|
||||
"anyOf": [
|
||||
{
|
||||
"type": "array",
|
||||
"items": {
|
||||
"description": "Modules that should be shared in the share scope.",
|
||||
"anyOf": [
|
||||
{
|
||||
"$ref": "#/definitions/SharedItem"
|
||||
},
|
||||
{
|
||||
"$ref": "#/definitions/SharedObject"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"$ref": "#/definitions/SharedObject"
|
||||
}
|
||||
]
|
||||
},
|
||||
"SharedConfig": {
|
||||
"description": "Advanced configuration for modules that should be shared in the share scope.",
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"eager": {
|
||||
"description": "Include the provided and fallback module directly instead behind an async request. This allows to use this shared module in initial load too. All possible shared modules need to be eager too.",
|
||||
"type": "boolean"
|
||||
},
|
||||
"import": {
|
||||
"description": "Provided module that should be provided to share scope. Also acts as fallback module if no shared module is found in share scope or version isn't valid. Defaults to the property name.",
|
||||
"anyOf": [
|
||||
{
|
||||
"description": "No provided or fallback module.",
|
||||
"enum": [false]
|
||||
},
|
||||
{
|
||||
"$ref": "#/definitions/SharedItem"
|
||||
}
|
||||
]
|
||||
},
|
||||
"packageName": {
|
||||
"description": "Package name to determine required version from description file. This is only needed when package name can't be automatically determined from request.",
|
||||
"type": "string",
|
||||
"minLength": 1
|
||||
},
|
||||
"requiredVersion": {
|
||||
"description": "Version requirement from module in share scope.",
|
||||
"anyOf": [
|
||||
{
|
||||
"description": "No version requirement check.",
|
||||
"enum": [false]
|
||||
},
|
||||
{
|
||||
"description": "Version as string. Can be prefixed with '^' or '~' for minimum matches. Each part of the version should be separated by a dot '.'.",
|
||||
"type": "string"
|
||||
}
|
||||
]
|
||||
},
|
||||
"shareKey": {
|
||||
"description": "Module is looked up under this key from the share scope.",
|
||||
"type": "string",
|
||||
"minLength": 1
|
||||
},
|
||||
"shareScope": {
|
||||
"description": "Share scope name.",
|
||||
"type": "string",
|
||||
"minLength": 1
|
||||
},
|
||||
"singleton": {
|
||||
"description": "Allow only a single version of the shared module in share scope (disabled by default).",
|
||||
"type": "boolean"
|
||||
},
|
||||
"strictVersion": {
|
||||
"description": "Do not accept shared module if version is not valid (defaults to yes, if local fallback module is available and shared module is not a singleton, otherwise no, has no effect if there is no required version specified).",
|
||||
"type": "boolean"
|
||||
},
|
||||
"version": {
|
||||
"description": "Version of the provided module. Will replace lower matching versions, but not higher.",
|
||||
"anyOf": [
|
||||
{
|
||||
"description": "Don't provide a version.",
|
||||
"enum": [false]
|
||||
},
|
||||
{
|
||||
"description": "Version as string. Each part of the version should be separated by a dot '.'.",
|
||||
"type": "string"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
"SharedItem": {
|
||||
"description": "A module that should be shared in the share scope.",
|
||||
"type": "string",
|
||||
"minLength": 1
|
||||
},
|
||||
"SharedObject": {
|
||||
"description": "Modules that should be shared in the share scope. Property names are used to match requested modules in this compilation. Relative requests are resolved, module requests are matched unresolved, absolute paths will match resolved requests. A trailing slash will match all requests with this prefix. In this case shareKey must also have a trailing slash.",
|
||||
"type": "object",
|
||||
"additionalProperties": {
|
||||
"description": "Modules that should be shared in the share scope.",
|
||||
"anyOf": [
|
||||
{
|
||||
"$ref": "#/definitions/SharedConfig"
|
||||
},
|
||||
{
|
||||
"$ref": "#/definitions/SharedItem"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"UmdNamedDefine": {
|
||||
"description": "If `output.libraryTarget` is set to umd and `output.library` is set, setting this to true will name the AMD module.",
|
||||
"type": "boolean"
|
||||
}
|
||||
},
|
||||
"title": "ModuleFederationPluginOptions",
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"exposes": {
|
||||
"$ref": "#/definitions/Exposes"
|
||||
},
|
||||
"filename": {
|
||||
"description": "The filename of the container as relative path inside the `output.path` directory.",
|
||||
"type": "string",
|
||||
"absolutePath": false
|
||||
},
|
||||
"library": {
|
||||
"$ref": "#/definitions/LibraryOptions"
|
||||
},
|
||||
"name": {
|
||||
"description": "The name of the container.",
|
||||
"type": "string"
|
||||
},
|
||||
"remoteType": {
|
||||
"description": "The external type of the remote containers.",
|
||||
"oneOf": [
|
||||
{
|
||||
"$ref": "#/definitions/ExternalsType"
|
||||
}
|
||||
]
|
||||
},
|
||||
"remotes": {
|
||||
"$ref": "#/definitions/Remotes"
|
||||
},
|
||||
"runtime": {
|
||||
"$ref": "#/definitions/EntryRuntime"
|
||||
},
|
||||
"shareScope": {
|
||||
"description": "Share scope name used for all shared modules (defaults to 'default').",
|
||||
"type": "string",
|
||||
"minLength": 1
|
||||
},
|
||||
"shared": {
|
||||
"$ref": "#/definitions/Shared"
|
||||
}
|
||||
}
|
||||
}
|
7
app_vue/node_modules/webpack/schemas/plugins/css/CssAutoGeneratorOptions.check.d.ts
generated
vendored
Normal file
7
app_vue/node_modules/webpack/schemas/plugins/css/CssAutoGeneratorOptions.check.d.ts
generated
vendored
Normal file
@ -0,0 +1,7 @@
|
||||
/*
|
||||
* This file was automatically generated.
|
||||
* DO NOT MODIFY BY HAND.
|
||||
* Run `yarn fix:special` to update
|
||||
*/
|
||||
declare const check: (options: any) => boolean;
|
||||
export = check;
|
6
app_vue/node_modules/webpack/schemas/plugins/css/CssAutoGeneratorOptions.check.js
generated
vendored
Normal file
6
app_vue/node_modules/webpack/schemas/plugins/css/CssAutoGeneratorOptions.check.js
generated
vendored
Normal file
@ -0,0 +1,6 @@
|
||||
/*
|
||||
* This file was automatically generated.
|
||||
* DO NOT MODIFY BY HAND.
|
||||
* Run `yarn fix:special` to update
|
||||
*/
|
||||
"use strict";function e(r,{instancePath:t="",parentData:o,parentDataProperty:n,rootData:a=r}={}){let s=null,l=0;if(0===l){if(!r||"object"!=typeof r||Array.isArray(r))return e.errors=[{params:{type:"object"}}],!1;{const t=l;for(const t in r)if("esModule"!==t&&"exportsConvention"!==t&&"exportsOnly"!==t&&"localIdentName"!==t)return e.errors=[{params:{additionalProperty:t}}],!1;if(t===l){if(void 0!==r.esModule){const t=l;if("boolean"!=typeof r.esModule)return e.errors=[{params:{type:"boolean"}}],!1;var i=t===l}else i=!0;if(i){if(void 0!==r.exportsConvention){let t=r.exportsConvention;const o=l,n=l;let a=!1;const c=l;if("as-is"!==t&&"camel-case"!==t&&"camel-case-only"!==t&&"dashes"!==t&&"dashes-only"!==t){const e={params:{}};null===s?s=[e]:s.push(e),l++}var p=c===l;if(a=a||p,!a){const e=l;if(!(t instanceof Function)){const e={params:{}};null===s?s=[e]:s.push(e),l++}p=e===l,a=a||p}if(!a){const r={params:{}};return null===s?s=[r]:s.push(r),l++,e.errors=s,!1}l=n,null!==s&&(n?s.length=n:s=null),i=o===l}else i=!0;if(i){if(void 0!==r.exportsOnly){const t=l;if("boolean"!=typeof r.exportsOnly)return e.errors=[{params:{type:"boolean"}}],!1;i=t===l}else i=!0;if(i)if(void 0!==r.localIdentName){const t=l;if("string"!=typeof r.localIdentName)return e.errors=[{params:{type:"string"}}],!1;i=t===l}else i=!0}}}}}return e.errors=s,0===l}function r(t,{instancePath:o="",parentData:n,parentDataProperty:a,rootData:s=t}={}){let l=null,i=0;return e(t,{instancePath:o,parentData:n,parentDataProperty:a,rootData:s})||(l=null===l?e.errors:l.concat(e.errors),i=l.length),r.errors=l,0===i}module.exports=r,module.exports.default=r;
|
3
app_vue/node_modules/webpack/schemas/plugins/css/CssAutoGeneratorOptions.json
generated
vendored
Normal file
3
app_vue/node_modules/webpack/schemas/plugins/css/CssAutoGeneratorOptions.json
generated
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
{
|
||||
"$ref": "../../WebpackOptions.json#/definitions/CssAutoGeneratorOptions"
|
||||
}
|
7
app_vue/node_modules/webpack/schemas/plugins/css/CssAutoParserOptions.check.d.ts
generated
vendored
Normal file
7
app_vue/node_modules/webpack/schemas/plugins/css/CssAutoParserOptions.check.d.ts
generated
vendored
Normal file
@ -0,0 +1,7 @@
|
||||
/*
|
||||
* This file was automatically generated.
|
||||
* DO NOT MODIFY BY HAND.
|
||||
* Run `yarn fix:special` to update
|
||||
*/
|
||||
declare const check: (options: any) => boolean;
|
||||
export = check;
|
6
app_vue/node_modules/webpack/schemas/plugins/css/CssAutoParserOptions.check.js
generated
vendored
Normal file
6
app_vue/node_modules/webpack/schemas/plugins/css/CssAutoParserOptions.check.js
generated
vendored
Normal file
@ -0,0 +1,6 @@
|
||||
/*
|
||||
* This file was automatically generated.
|
||||
* DO NOT MODIFY BY HAND.
|
||||
* Run `yarn fix:special` to update
|
||||
*/
|
||||
"use strict";function r(t,{instancePath:e="",parentData:o,parentDataProperty:a,rootData:n=t}={}){if(!t||"object"!=typeof t||Array.isArray(t))return r.errors=[{params:{type:"object"}}],!1;{const e=0;for(const e in t)if("import"!==e&&"namedExports"!==e&&"url"!==e)return r.errors=[{params:{additionalProperty:e}}],!1;if(0===e){if(void 0!==t.import){const e=0;if("boolean"!=typeof t.import)return r.errors=[{params:{type:"boolean"}}],!1;var s=0===e}else s=!0;if(s){if(void 0!==t.namedExports){const e=0;if("boolean"!=typeof t.namedExports)return r.errors=[{params:{type:"boolean"}}],!1;s=0===e}else s=!0;if(s)if(void 0!==t.url){const e=0;if("boolean"!=typeof t.url)return r.errors=[{params:{type:"boolean"}}],!1;s=0===e}else s=!0}}}return r.errors=null,!0}function t(e,{instancePath:o="",parentData:a,parentDataProperty:n,rootData:s=e}={}){let p=null,i=0;return r(e,{instancePath:o,parentData:a,parentDataProperty:n,rootData:s})||(p=null===p?r.errors:p.concat(r.errors),i=p.length),t.errors=p,0===i}module.exports=t,module.exports.default=t;
|
3
app_vue/node_modules/webpack/schemas/plugins/css/CssAutoParserOptions.json
generated
vendored
Normal file
3
app_vue/node_modules/webpack/schemas/plugins/css/CssAutoParserOptions.json
generated
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
{
|
||||
"$ref": "../../WebpackOptions.json#/definitions/CssAutoParserOptions"
|
||||
}
|
7
app_vue/node_modules/webpack/schemas/plugins/css/CssGeneratorOptions.check.d.ts
generated
vendored
Normal file
7
app_vue/node_modules/webpack/schemas/plugins/css/CssGeneratorOptions.check.d.ts
generated
vendored
Normal file
@ -0,0 +1,7 @@
|
||||
/*
|
||||
* This file was automatically generated.
|
||||
* DO NOT MODIFY BY HAND.
|
||||
* Run `yarn fix:special` to update
|
||||
*/
|
||||
declare const check: (options: any) => boolean;
|
||||
export = check;
|
6
app_vue/node_modules/webpack/schemas/plugins/css/CssGeneratorOptions.check.js
generated
vendored
Normal file
6
app_vue/node_modules/webpack/schemas/plugins/css/CssGeneratorOptions.check.js
generated
vendored
Normal file
@ -0,0 +1,6 @@
|
||||
/*
|
||||
* This file was automatically generated.
|
||||
* DO NOT MODIFY BY HAND.
|
||||
* Run `yarn fix:special` to update
|
||||
*/
|
||||
"use strict";function r(e,{instancePath:t="",parentData:o,parentDataProperty:a,rootData:n=e}={}){if(!e||"object"!=typeof e||Array.isArray(e))return r.errors=[{params:{type:"object"}}],!1;{const t=0;for(const t in e)if("esModule"!==t&&"exportsOnly"!==t)return r.errors=[{params:{additionalProperty:t}}],!1;if(0===t){if(void 0!==e.esModule){const t=0;if("boolean"!=typeof e.esModule)return r.errors=[{params:{type:"boolean"}}],!1;var s=0===t}else s=!0;if(s)if(void 0!==e.exportsOnly){const t=0;if("boolean"!=typeof e.exportsOnly)return r.errors=[{params:{type:"boolean"}}],!1;s=0===t}else s=!0}}return r.errors=null,!0}function e(t,{instancePath:o="",parentData:a,parentDataProperty:n,rootData:s=t}={}){let p=null,l=0;return r(t,{instancePath:o,parentData:a,parentDataProperty:n,rootData:s})||(p=null===p?r.errors:p.concat(r.errors),l=p.length),e.errors=p,0===l}module.exports=e,module.exports.default=e;
|
3
app_vue/node_modules/webpack/schemas/plugins/css/CssGeneratorOptions.json
generated
vendored
Normal file
3
app_vue/node_modules/webpack/schemas/plugins/css/CssGeneratorOptions.json
generated
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
{
|
||||
"$ref": "../../WebpackOptions.json#/definitions/CssGeneratorOptions"
|
||||
}
|
7
app_vue/node_modules/webpack/schemas/plugins/css/CssGlobalGeneratorOptions.check.d.ts
generated
vendored
Normal file
7
app_vue/node_modules/webpack/schemas/plugins/css/CssGlobalGeneratorOptions.check.d.ts
generated
vendored
Normal file
@ -0,0 +1,7 @@
|
||||
/*
|
||||
* This file was automatically generated.
|
||||
* DO NOT MODIFY BY HAND.
|
||||
* Run `yarn fix:special` to update
|
||||
*/
|
||||
declare const check: (options: any) => boolean;
|
||||
export = check;
|
6
app_vue/node_modules/webpack/schemas/plugins/css/CssGlobalGeneratorOptions.check.js
generated
vendored
Normal file
6
app_vue/node_modules/webpack/schemas/plugins/css/CssGlobalGeneratorOptions.check.js
generated
vendored
Normal file
@ -0,0 +1,6 @@
|
||||
/*
|
||||
* This file was automatically generated.
|
||||
* DO NOT MODIFY BY HAND.
|
||||
* Run `yarn fix:special` to update
|
||||
*/
|
||||
"use strict";function e(r,{instancePath:t="",parentData:o,parentDataProperty:n,rootData:a=r}={}){let s=null,l=0;if(0===l){if(!r||"object"!=typeof r||Array.isArray(r))return e.errors=[{params:{type:"object"}}],!1;{const t=l;for(const t in r)if("esModule"!==t&&"exportsConvention"!==t&&"exportsOnly"!==t&&"localIdentName"!==t)return e.errors=[{params:{additionalProperty:t}}],!1;if(t===l){if(void 0!==r.esModule){const t=l;if("boolean"!=typeof r.esModule)return e.errors=[{params:{type:"boolean"}}],!1;var i=t===l}else i=!0;if(i){if(void 0!==r.exportsConvention){let t=r.exportsConvention;const o=l,n=l;let a=!1;const c=l;if("as-is"!==t&&"camel-case"!==t&&"camel-case-only"!==t&&"dashes"!==t&&"dashes-only"!==t){const e={params:{}};null===s?s=[e]:s.push(e),l++}var p=c===l;if(a=a||p,!a){const e=l;if(!(t instanceof Function)){const e={params:{}};null===s?s=[e]:s.push(e),l++}p=e===l,a=a||p}if(!a){const r={params:{}};return null===s?s=[r]:s.push(r),l++,e.errors=s,!1}l=n,null!==s&&(n?s.length=n:s=null),i=o===l}else i=!0;if(i){if(void 0!==r.exportsOnly){const t=l;if("boolean"!=typeof r.exportsOnly)return e.errors=[{params:{type:"boolean"}}],!1;i=t===l}else i=!0;if(i)if(void 0!==r.localIdentName){const t=l;if("string"!=typeof r.localIdentName)return e.errors=[{params:{type:"string"}}],!1;i=t===l}else i=!0}}}}}return e.errors=s,0===l}function r(t,{instancePath:o="",parentData:n,parentDataProperty:a,rootData:s=t}={}){let l=null,i=0;return e(t,{instancePath:o,parentData:n,parentDataProperty:a,rootData:s})||(l=null===l?e.errors:l.concat(e.errors),i=l.length),r.errors=l,0===i}module.exports=r,module.exports.default=r;
|
3
app_vue/node_modules/webpack/schemas/plugins/css/CssGlobalGeneratorOptions.json
generated
vendored
Normal file
3
app_vue/node_modules/webpack/schemas/plugins/css/CssGlobalGeneratorOptions.json
generated
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
{
|
||||
"$ref": "../../WebpackOptions.json#/definitions/CssGlobalGeneratorOptions"
|
||||
}
|
7
app_vue/node_modules/webpack/schemas/plugins/css/CssGlobalParserOptions.check.d.ts
generated
vendored
Normal file
7
app_vue/node_modules/webpack/schemas/plugins/css/CssGlobalParserOptions.check.d.ts
generated
vendored
Normal file
@ -0,0 +1,7 @@
|
||||
/*
|
||||
* This file was automatically generated.
|
||||
* DO NOT MODIFY BY HAND.
|
||||
* Run `yarn fix:special` to update
|
||||
*/
|
||||
declare const check: (options: any) => boolean;
|
||||
export = check;
|
6
app_vue/node_modules/webpack/schemas/plugins/css/CssGlobalParserOptions.check.js
generated
vendored
Normal file
6
app_vue/node_modules/webpack/schemas/plugins/css/CssGlobalParserOptions.check.js
generated
vendored
Normal file
@ -0,0 +1,6 @@
|
||||
/*
|
||||
* This file was automatically generated.
|
||||
* DO NOT MODIFY BY HAND.
|
||||
* Run `yarn fix:special` to update
|
||||
*/
|
||||
"use strict";function r(t,{instancePath:e="",parentData:o,parentDataProperty:a,rootData:n=t}={}){if(!t||"object"!=typeof t||Array.isArray(t))return r.errors=[{params:{type:"object"}}],!1;{const e=0;for(const e in t)if("import"!==e&&"namedExports"!==e&&"url"!==e)return r.errors=[{params:{additionalProperty:e}}],!1;if(0===e){if(void 0!==t.import){const e=0;if("boolean"!=typeof t.import)return r.errors=[{params:{type:"boolean"}}],!1;var s=0===e}else s=!0;if(s){if(void 0!==t.namedExports){const e=0;if("boolean"!=typeof t.namedExports)return r.errors=[{params:{type:"boolean"}}],!1;s=0===e}else s=!0;if(s)if(void 0!==t.url){const e=0;if("boolean"!=typeof t.url)return r.errors=[{params:{type:"boolean"}}],!1;s=0===e}else s=!0}}}return r.errors=null,!0}function t(e,{instancePath:o="",parentData:a,parentDataProperty:n,rootData:s=e}={}){let p=null,i=0;return r(e,{instancePath:o,parentData:a,parentDataProperty:n,rootData:s})||(p=null===p?r.errors:p.concat(r.errors),i=p.length),t.errors=p,0===i}module.exports=t,module.exports.default=t;
|
3
app_vue/node_modules/webpack/schemas/plugins/css/CssGlobalParserOptions.json
generated
vendored
Normal file
3
app_vue/node_modules/webpack/schemas/plugins/css/CssGlobalParserOptions.json
generated
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
{
|
||||
"$ref": "../../WebpackOptions.json#/definitions/CssGlobalParserOptions"
|
||||
}
|
7
app_vue/node_modules/webpack/schemas/plugins/css/CssModuleGeneratorOptions.check.d.ts
generated
vendored
Normal file
7
app_vue/node_modules/webpack/schemas/plugins/css/CssModuleGeneratorOptions.check.d.ts
generated
vendored
Normal file
@ -0,0 +1,7 @@
|
||||
/*
|
||||
* This file was automatically generated.
|
||||
* DO NOT MODIFY BY HAND.
|
||||
* Run `yarn fix:special` to update
|
||||
*/
|
||||
declare const check: (options: any) => boolean;
|
||||
export = check;
|
6
app_vue/node_modules/webpack/schemas/plugins/css/CssModuleGeneratorOptions.check.js
generated
vendored
Normal file
6
app_vue/node_modules/webpack/schemas/plugins/css/CssModuleGeneratorOptions.check.js
generated
vendored
Normal file
@ -0,0 +1,6 @@
|
||||
/*
|
||||
* This file was automatically generated.
|
||||
* DO NOT MODIFY BY HAND.
|
||||
* Run `yarn fix:special` to update
|
||||
*/
|
||||
"use strict";function e(r,{instancePath:t="",parentData:o,parentDataProperty:n,rootData:a=r}={}){let s=null,l=0;if(0===l){if(!r||"object"!=typeof r||Array.isArray(r))return e.errors=[{params:{type:"object"}}],!1;{const t=l;for(const t in r)if("esModule"!==t&&"exportsConvention"!==t&&"exportsOnly"!==t&&"localIdentName"!==t)return e.errors=[{params:{additionalProperty:t}}],!1;if(t===l){if(void 0!==r.esModule){const t=l;if("boolean"!=typeof r.esModule)return e.errors=[{params:{type:"boolean"}}],!1;var i=t===l}else i=!0;if(i){if(void 0!==r.exportsConvention){let t=r.exportsConvention;const o=l,n=l;let a=!1;const c=l;if("as-is"!==t&&"camel-case"!==t&&"camel-case-only"!==t&&"dashes"!==t&&"dashes-only"!==t){const e={params:{}};null===s?s=[e]:s.push(e),l++}var p=c===l;if(a=a||p,!a){const e=l;if(!(t instanceof Function)){const e={params:{}};null===s?s=[e]:s.push(e),l++}p=e===l,a=a||p}if(!a){const r={params:{}};return null===s?s=[r]:s.push(r),l++,e.errors=s,!1}l=n,null!==s&&(n?s.length=n:s=null),i=o===l}else i=!0;if(i){if(void 0!==r.exportsOnly){const t=l;if("boolean"!=typeof r.exportsOnly)return e.errors=[{params:{type:"boolean"}}],!1;i=t===l}else i=!0;if(i)if(void 0!==r.localIdentName){const t=l;if("string"!=typeof r.localIdentName)return e.errors=[{params:{type:"string"}}],!1;i=t===l}else i=!0}}}}}return e.errors=s,0===l}function r(t,{instancePath:o="",parentData:n,parentDataProperty:a,rootData:s=t}={}){let l=null,i=0;return e(t,{instancePath:o,parentData:n,parentDataProperty:a,rootData:s})||(l=null===l?e.errors:l.concat(e.errors),i=l.length),r.errors=l,0===i}module.exports=r,module.exports.default=r;
|
3
app_vue/node_modules/webpack/schemas/plugins/css/CssModuleGeneratorOptions.json
generated
vendored
Normal file
3
app_vue/node_modules/webpack/schemas/plugins/css/CssModuleGeneratorOptions.json
generated
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
{
|
||||
"$ref": "../../WebpackOptions.json#/definitions/CssModuleGeneratorOptions"
|
||||
}
|
7
app_vue/node_modules/webpack/schemas/plugins/css/CssModuleParserOptions.check.d.ts
generated
vendored
Normal file
7
app_vue/node_modules/webpack/schemas/plugins/css/CssModuleParserOptions.check.d.ts
generated
vendored
Normal file
@ -0,0 +1,7 @@
|
||||
/*
|
||||
* This file was automatically generated.
|
||||
* DO NOT MODIFY BY HAND.
|
||||
* Run `yarn fix:special` to update
|
||||
*/
|
||||
declare const check: (options: any) => boolean;
|
||||
export = check;
|
6
app_vue/node_modules/webpack/schemas/plugins/css/CssModuleParserOptions.check.js
generated
vendored
Normal file
6
app_vue/node_modules/webpack/schemas/plugins/css/CssModuleParserOptions.check.js
generated
vendored
Normal file
@ -0,0 +1,6 @@
|
||||
/*
|
||||
* This file was automatically generated.
|
||||
* DO NOT MODIFY BY HAND.
|
||||
* Run `yarn fix:special` to update
|
||||
*/
|
||||
"use strict";function r(t,{instancePath:e="",parentData:o,parentDataProperty:a,rootData:n=t}={}){if(!t||"object"!=typeof t||Array.isArray(t))return r.errors=[{params:{type:"object"}}],!1;{const e=0;for(const e in t)if("import"!==e&&"namedExports"!==e&&"url"!==e)return r.errors=[{params:{additionalProperty:e}}],!1;if(0===e){if(void 0!==t.import){const e=0;if("boolean"!=typeof t.import)return r.errors=[{params:{type:"boolean"}}],!1;var s=0===e}else s=!0;if(s){if(void 0!==t.namedExports){const e=0;if("boolean"!=typeof t.namedExports)return r.errors=[{params:{type:"boolean"}}],!1;s=0===e}else s=!0;if(s)if(void 0!==t.url){const e=0;if("boolean"!=typeof t.url)return r.errors=[{params:{type:"boolean"}}],!1;s=0===e}else s=!0}}}return r.errors=null,!0}function t(e,{instancePath:o="",parentData:a,parentDataProperty:n,rootData:s=e}={}){let p=null,i=0;return r(e,{instancePath:o,parentData:a,parentDataProperty:n,rootData:s})||(p=null===p?r.errors:p.concat(r.errors),i=p.length),t.errors=p,0===i}module.exports=t,module.exports.default=t;
|
3
app_vue/node_modules/webpack/schemas/plugins/css/CssModuleParserOptions.json
generated
vendored
Normal file
3
app_vue/node_modules/webpack/schemas/plugins/css/CssModuleParserOptions.json
generated
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
{
|
||||
"$ref": "../../WebpackOptions.json#/definitions/CssModuleParserOptions"
|
||||
}
|
7
app_vue/node_modules/webpack/schemas/plugins/css/CssParserOptions.check.d.ts
generated
vendored
Normal file
7
app_vue/node_modules/webpack/schemas/plugins/css/CssParserOptions.check.d.ts
generated
vendored
Normal file
@ -0,0 +1,7 @@
|
||||
/*
|
||||
* This file was automatically generated.
|
||||
* DO NOT MODIFY BY HAND.
|
||||
* Run `yarn fix:special` to update
|
||||
*/
|
||||
declare const check: (options: any) => boolean;
|
||||
export = check;
|
6
app_vue/node_modules/webpack/schemas/plugins/css/CssParserOptions.check.js
generated
vendored
Normal file
6
app_vue/node_modules/webpack/schemas/plugins/css/CssParserOptions.check.js
generated
vendored
Normal file
@ -0,0 +1,6 @@
|
||||
/*
|
||||
* This file was automatically generated.
|
||||
* DO NOT MODIFY BY HAND.
|
||||
* Run `yarn fix:special` to update
|
||||
*/
|
||||
"use strict";function r(t,{instancePath:e="",parentData:o,parentDataProperty:a,rootData:n=t}={}){if(!t||"object"!=typeof t||Array.isArray(t))return r.errors=[{params:{type:"object"}}],!1;{const e=0;for(const e in t)if("import"!==e&&"namedExports"!==e&&"url"!==e)return r.errors=[{params:{additionalProperty:e}}],!1;if(0===e){if(void 0!==t.import){const e=0;if("boolean"!=typeof t.import)return r.errors=[{params:{type:"boolean"}}],!1;var s=0===e}else s=!0;if(s){if(void 0!==t.namedExports){const e=0;if("boolean"!=typeof t.namedExports)return r.errors=[{params:{type:"boolean"}}],!1;s=0===e}else s=!0;if(s)if(void 0!==t.url){const e=0;if("boolean"!=typeof t.url)return r.errors=[{params:{type:"boolean"}}],!1;s=0===e}else s=!0}}}return r.errors=null,!0}function t(e,{instancePath:o="",parentData:a,parentDataProperty:n,rootData:s=e}={}){let p=null,i=0;return r(e,{instancePath:o,parentData:a,parentDataProperty:n,rootData:s})||(p=null===p?r.errors:p.concat(r.errors),i=p.length),t.errors=p,0===i}module.exports=t,module.exports.default=t;
|
3
app_vue/node_modules/webpack/schemas/plugins/css/CssParserOptions.json
generated
vendored
Normal file
3
app_vue/node_modules/webpack/schemas/plugins/css/CssParserOptions.json
generated
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
{
|
||||
"$ref": "../../WebpackOptions.json#/definitions/CssParserOptions"
|
||||
}
|
7
app_vue/node_modules/webpack/schemas/plugins/debug/ProfilingPlugin.check.d.ts
generated
vendored
Normal file
7
app_vue/node_modules/webpack/schemas/plugins/debug/ProfilingPlugin.check.d.ts
generated
vendored
Normal file
@ -0,0 +1,7 @@
|
||||
/*
|
||||
* This file was automatically generated.
|
||||
* DO NOT MODIFY BY HAND.
|
||||
* Run `yarn fix:special` to update
|
||||
*/
|
||||
declare const check: (options: import("../../../declarations/plugins/debug/ProfilingPlugin").ProfilingPluginOptions) => boolean;
|
||||
export = check;
|
6
app_vue/node_modules/webpack/schemas/plugins/debug/ProfilingPlugin.check.js
generated
vendored
Normal file
6
app_vue/node_modules/webpack/schemas/plugins/debug/ProfilingPlugin.check.js
generated
vendored
Normal file
@ -0,0 +1,6 @@
|
||||
/*
|
||||
* This file was automatically generated.
|
||||
* DO NOT MODIFY BY HAND.
|
||||
* Run `yarn fix:special` to update
|
||||
*/
|
||||
const r=/^(?:[A-Za-z]:[\\/]|\\\\|\/)/;function t(e,{instancePath:a="",parentData:o,parentDataProperty:n,rootData:s=e}={}){if(!e||"object"!=typeof e||Array.isArray(e))return t.errors=[{params:{type:"object"}}],!1;{const a=0;for(const r in e)if("outputPath"!==r)return t.errors=[{params:{additionalProperty:r}}],!1;if(0===a&&void 0!==e.outputPath){let a=e.outputPath;if("string"!=typeof a)return t.errors=[{params:{type:"string"}}],!1;if(a.includes("!")||!0!==r.test(a))return t.errors=[{params:{}}],!1}}return t.errors=null,!0}module.exports=t,module.exports.default=t;
|
12
app_vue/node_modules/webpack/schemas/plugins/debug/ProfilingPlugin.json
generated
vendored
Normal file
12
app_vue/node_modules/webpack/schemas/plugins/debug/ProfilingPlugin.json
generated
vendored
Normal file
@ -0,0 +1,12 @@
|
||||
{
|
||||
"title": "ProfilingPluginOptions",
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"outputPath": {
|
||||
"description": "Path to the output file e.g. `path.resolve(__dirname, 'profiling/events.json')`. Defaults to `events.json`.",
|
||||
"type": "string",
|
||||
"absolutePath": true
|
||||
}
|
||||
}
|
||||
}
|
7
app_vue/node_modules/webpack/schemas/plugins/ids/OccurrenceChunkIdsPlugin.check.d.ts
generated
vendored
Normal file
7
app_vue/node_modules/webpack/schemas/plugins/ids/OccurrenceChunkIdsPlugin.check.d.ts
generated
vendored
Normal file
@ -0,0 +1,7 @@
|
||||
/*
|
||||
* This file was automatically generated.
|
||||
* DO NOT MODIFY BY HAND.
|
||||
* Run `yarn fix:special` to update
|
||||
*/
|
||||
declare const check: (options: import("../../../declarations/plugins/ids/OccurrenceChunkIdsPlugin").OccurrenceChunkIdsPluginOptions) => boolean;
|
||||
export = check;
|
6
app_vue/node_modules/webpack/schemas/plugins/ids/OccurrenceChunkIdsPlugin.check.js
generated
vendored
Normal file
6
app_vue/node_modules/webpack/schemas/plugins/ids/OccurrenceChunkIdsPlugin.check.js
generated
vendored
Normal file
@ -0,0 +1,6 @@
|
||||
/*
|
||||
* This file was automatically generated.
|
||||
* DO NOT MODIFY BY HAND.
|
||||
* Run `yarn fix:special` to update
|
||||
*/
|
||||
"use strict";function r(t,{instancePath:e="",parentData:o,parentDataProperty:a,rootData:i=t}={}){if(!t||"object"!=typeof t||Array.isArray(t))return r.errors=[{params:{type:"object"}}],!1;{const e=0;for(const e in t)if("prioritiseInitial"!==e)return r.errors=[{params:{additionalProperty:e}}],!1;if(0===e&&void 0!==t.prioritiseInitial&&"boolean"!=typeof t.prioritiseInitial)return r.errors=[{params:{type:"boolean"}}],!1}return r.errors=null,!0}module.exports=r,module.exports.default=r;
|
11
app_vue/node_modules/webpack/schemas/plugins/ids/OccurrenceChunkIdsPlugin.json
generated
vendored
Normal file
11
app_vue/node_modules/webpack/schemas/plugins/ids/OccurrenceChunkIdsPlugin.json
generated
vendored
Normal file
@ -0,0 +1,11 @@
|
||||
{
|
||||
"title": "OccurrenceChunkIdsPluginOptions",
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"prioritiseInitial": {
|
||||
"description": "Prioritise initial size over total size.",
|
||||
"type": "boolean"
|
||||
}
|
||||
}
|
||||
}
|
7
app_vue/node_modules/webpack/schemas/plugins/ids/OccurrenceModuleIdsPlugin.check.d.ts
generated
vendored
Normal file
7
app_vue/node_modules/webpack/schemas/plugins/ids/OccurrenceModuleIdsPlugin.check.d.ts
generated
vendored
Normal file
@ -0,0 +1,7 @@
|
||||
/*
|
||||
* This file was automatically generated.
|
||||
* DO NOT MODIFY BY HAND.
|
||||
* Run `yarn fix:special` to update
|
||||
*/
|
||||
declare const check: (options: import("../../../declarations/plugins/ids/OccurrenceModuleIdsPlugin").OccurrenceModuleIdsPluginOptions) => boolean;
|
||||
export = check;
|
6
app_vue/node_modules/webpack/schemas/plugins/ids/OccurrenceModuleIdsPlugin.check.js
generated
vendored
Normal file
6
app_vue/node_modules/webpack/schemas/plugins/ids/OccurrenceModuleIdsPlugin.check.js
generated
vendored
Normal file
@ -0,0 +1,6 @@
|
||||
/*
|
||||
* This file was automatically generated.
|
||||
* DO NOT MODIFY BY HAND.
|
||||
* Run `yarn fix:special` to update
|
||||
*/
|
||||
"use strict";function r(t,{instancePath:e="",parentData:o,parentDataProperty:a,rootData:i=t}={}){if(!t||"object"!=typeof t||Array.isArray(t))return r.errors=[{params:{type:"object"}}],!1;{const e=0;for(const e in t)if("prioritiseInitial"!==e)return r.errors=[{params:{additionalProperty:e}}],!1;if(0===e&&void 0!==t.prioritiseInitial&&"boolean"!=typeof t.prioritiseInitial)return r.errors=[{params:{type:"boolean"}}],!1}return r.errors=null,!0}module.exports=r,module.exports.default=r;
|
11
app_vue/node_modules/webpack/schemas/plugins/ids/OccurrenceModuleIdsPlugin.json
generated
vendored
Normal file
11
app_vue/node_modules/webpack/schemas/plugins/ids/OccurrenceModuleIdsPlugin.json
generated
vendored
Normal file
@ -0,0 +1,11 @@
|
||||
{
|
||||
"title": "OccurrenceModuleIdsPluginOptions",
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"prioritiseInitial": {
|
||||
"description": "Prioritise initial size over total size.",
|
||||
"type": "boolean"
|
||||
}
|
||||
}
|
||||
}
|
7
app_vue/node_modules/webpack/schemas/plugins/json/JsonModulesPluginGenerator.check.d.ts
generated
vendored
Normal file
7
app_vue/node_modules/webpack/schemas/plugins/json/JsonModulesPluginGenerator.check.d.ts
generated
vendored
Normal file
@ -0,0 +1,7 @@
|
||||
/*
|
||||
* This file was automatically generated.
|
||||
* DO NOT MODIFY BY HAND.
|
||||
* Run `yarn fix:special` to update
|
||||
*/
|
||||
declare const check: (options: any) => boolean;
|
||||
export = check;
|
6
app_vue/node_modules/webpack/schemas/plugins/json/JsonModulesPluginGenerator.check.js
generated
vendored
Normal file
6
app_vue/node_modules/webpack/schemas/plugins/json/JsonModulesPluginGenerator.check.js
generated
vendored
Normal file
@ -0,0 +1,6 @@
|
||||
/*
|
||||
* This file was automatically generated.
|
||||
* DO NOT MODIFY BY HAND.
|
||||
* Run `yarn fix:special` to update
|
||||
*/
|
||||
"use strict";function r(e,{instancePath:t="",parentData:a,parentDataProperty:o,rootData:s=e}={}){if(!e||"object"!=typeof e||Array.isArray(e))return r.errors=[{params:{type:"object"}}],!1;{const t=0;for(const t in e)if("JSONParse"!==t)return r.errors=[{params:{additionalProperty:t}}],!1;if(0===t&&void 0!==e.JSONParse&&"boolean"!=typeof e.JSONParse)return r.errors=[{params:{type:"boolean"}}],!1}return r.errors=null,!0}module.exports=r,module.exports.default=r;
|
3
app_vue/node_modules/webpack/schemas/plugins/json/JsonModulesPluginGenerator.json
generated
vendored
Normal file
3
app_vue/node_modules/webpack/schemas/plugins/json/JsonModulesPluginGenerator.json
generated
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
{
|
||||
"$ref": "../../WebpackOptions.json#/definitions/JsonGeneratorOptions"
|
||||
}
|
7
app_vue/node_modules/webpack/schemas/plugins/json/JsonModulesPluginParser.check.d.ts
generated
vendored
Normal file
7
app_vue/node_modules/webpack/schemas/plugins/json/JsonModulesPluginParser.check.d.ts
generated
vendored
Normal file
@ -0,0 +1,7 @@
|
||||
/*
|
||||
* This file was automatically generated.
|
||||
* DO NOT MODIFY BY HAND.
|
||||
* Run `yarn fix:special` to update
|
||||
*/
|
||||
declare const check: (options: any) => boolean;
|
||||
export = check;
|
6
app_vue/node_modules/webpack/schemas/plugins/json/JsonModulesPluginParser.check.js
generated
vendored
Normal file
6
app_vue/node_modules/webpack/schemas/plugins/json/JsonModulesPluginParser.check.js
generated
vendored
Normal file
@ -0,0 +1,6 @@
|
||||
/*
|
||||
* This file was automatically generated.
|
||||
* DO NOT MODIFY BY HAND.
|
||||
* Run `yarn fix:special` to update
|
||||
*/
|
||||
"use strict";function r(e,{instancePath:t="",parentData:o,parentDataProperty:a,rootData:s=e}={}){if(!e||"object"!=typeof e||Array.isArray(e))return r.errors=[{params:{type:"object"}}],!1;{const t=0;for(const t in e)if("exportsDepth"!==t&&"parse"!==t)return r.errors=[{params:{additionalProperty:t}}],!1;if(0===t){if(void 0!==e.exportsDepth){const t=0;if("number"!=typeof e.exportsDepth)return r.errors=[{params:{type:"number"}}],!1;var n=0===t}else n=!0;if(n)if(void 0!==e.parse){const t=0;if(!(e.parse instanceof Function))return r.errors=[{params:{}}],!1;n=0===t}else n=!0}}return r.errors=null,!0}module.exports=r,module.exports.default=r;
|
3
app_vue/node_modules/webpack/schemas/plugins/json/JsonModulesPluginParser.json
generated
vendored
Normal file
3
app_vue/node_modules/webpack/schemas/plugins/json/JsonModulesPluginParser.json
generated
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
{
|
||||
"$ref": "../../WebpackOptions.json#/definitions/JsonParserOptions"
|
||||
}
|
7
app_vue/node_modules/webpack/schemas/plugins/optimize/AggressiveSplittingPlugin.check.d.ts
generated
vendored
Normal file
7
app_vue/node_modules/webpack/schemas/plugins/optimize/AggressiveSplittingPlugin.check.d.ts
generated
vendored
Normal file
@ -0,0 +1,7 @@
|
||||
/*
|
||||
* This file was automatically generated.
|
||||
* DO NOT MODIFY BY HAND.
|
||||
* Run `yarn fix:special` to update
|
||||
*/
|
||||
declare const check: (options: import("../../../declarations/plugins/optimize/AggressiveSplittingPlugin").AggressiveSplittingPluginOptions) => boolean;
|
||||
export = check;
|
6
app_vue/node_modules/webpack/schemas/plugins/optimize/AggressiveSplittingPlugin.check.js
generated
vendored
Normal file
6
app_vue/node_modules/webpack/schemas/plugins/optimize/AggressiveSplittingPlugin.check.js
generated
vendored
Normal file
@ -0,0 +1,6 @@
|
||||
/*
|
||||
* This file was automatically generated.
|
||||
* DO NOT MODIFY BY HAND.
|
||||
* Run `yarn fix:special` to update
|
||||
*/
|
||||
"use strict";function r(e,{instancePath:t="",parentData:n,parentDataProperty:i,rootData:o=e}={}){if(!e||"object"!=typeof e||Array.isArray(e))return r.errors=[{params:{type:"object"}}],!1;{const t=0;for(const t in e)if("chunkOverhead"!==t&&"entryChunkMultiplicator"!==t&&"maxSize"!==t&&"minSize"!==t)return r.errors=[{params:{additionalProperty:t}}],!1;if(0===t){if(void 0!==e.chunkOverhead){const t=0;if("number"!=typeof e.chunkOverhead)return r.errors=[{params:{type:"number"}}],!1;var a=0===t}else a=!0;if(a){if(void 0!==e.entryChunkMultiplicator){const t=0;if("number"!=typeof e.entryChunkMultiplicator)return r.errors=[{params:{type:"number"}}],!1;a=0===t}else a=!0;if(a){if(void 0!==e.maxSize){const t=0;if("number"!=typeof e.maxSize)return r.errors=[{params:{type:"number"}}],!1;a=0===t}else a=!0;if(a)if(void 0!==e.minSize){const t=0;if("number"!=typeof e.minSize)return r.errors=[{params:{type:"number"}}],!1;a=0===t}else a=!0}}}}return r.errors=null,!0}module.exports=r,module.exports.default=r;
|
23
app_vue/node_modules/webpack/schemas/plugins/optimize/AggressiveSplittingPlugin.json
generated
vendored
Normal file
23
app_vue/node_modules/webpack/schemas/plugins/optimize/AggressiveSplittingPlugin.json
generated
vendored
Normal file
@ -0,0 +1,23 @@
|
||||
{
|
||||
"title": "AggressiveSplittingPluginOptions",
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"chunkOverhead": {
|
||||
"description": "Extra cost for each chunk (Default: 9.8kiB).",
|
||||
"type": "number"
|
||||
},
|
||||
"entryChunkMultiplicator": {
|
||||
"description": "Extra cost multiplicator for entry chunks (Default: 10).",
|
||||
"type": "number"
|
||||
},
|
||||
"maxSize": {
|
||||
"description": "Byte, max size of per file (Default: 50kiB).",
|
||||
"type": "number"
|
||||
},
|
||||
"minSize": {
|
||||
"description": "Byte, split point. (Default: 30kiB).",
|
||||
"type": "number"
|
||||
}
|
||||
}
|
||||
}
|
7
app_vue/node_modules/webpack/schemas/plugins/optimize/LimitChunkCountPlugin.check.d.ts
generated
vendored
Normal file
7
app_vue/node_modules/webpack/schemas/plugins/optimize/LimitChunkCountPlugin.check.d.ts
generated
vendored
Normal file
@ -0,0 +1,7 @@
|
||||
/*
|
||||
* This file was automatically generated.
|
||||
* DO NOT MODIFY BY HAND.
|
||||
* Run `yarn fix:special` to update
|
||||
*/
|
||||
declare const check: (options: import("../../../declarations/plugins/optimize/LimitChunkCountPlugin").LimitChunkCountPluginOptions) => boolean;
|
||||
export = check;
|
6
app_vue/node_modules/webpack/schemas/plugins/optimize/LimitChunkCountPlugin.check.js
generated
vendored
Normal file
6
app_vue/node_modules/webpack/schemas/plugins/optimize/LimitChunkCountPlugin.check.js
generated
vendored
Normal file
@ -0,0 +1,6 @@
|
||||
/*
|
||||
* This file was automatically generated.
|
||||
* DO NOT MODIFY BY HAND.
|
||||
* Run `yarn fix:special` to update
|
||||
*/
|
||||
"use strict";function r(e,{instancePath:t="",parentData:n,parentDataProperty:a,rootData:o=e}={}){if(!e||"object"!=typeof e||Array.isArray(e))return r.errors=[{params:{type:"object"}}],!1;{let t;if(void 0===e.maxChunks&&(t="maxChunks"))return r.errors=[{params:{missingProperty:t}}],!1;{const t=0;for(const t in e)if("chunkOverhead"!==t&&"entryChunkMultiplicator"!==t&&"maxChunks"!==t)return r.errors=[{params:{additionalProperty:t}}],!1;if(0===t){if(void 0!==e.chunkOverhead){const t=0;if("number"!=typeof e.chunkOverhead)return r.errors=[{params:{type:"number"}}],!1;var s=0===t}else s=!0;if(s){if(void 0!==e.entryChunkMultiplicator){const t=0;if("number"!=typeof e.entryChunkMultiplicator)return r.errors=[{params:{type:"number"}}],!1;s=0===t}else s=!0;if(s)if(void 0!==e.maxChunks){let t=e.maxChunks;const n=0;if(0===n){if("number"!=typeof t)return r.errors=[{params:{type:"number"}}],!1;if(t<1||isNaN(t))return r.errors=[{params:{comparison:">=",limit:1}}],!1}s=0===n}else s=!0}}}}return r.errors=null,!0}module.exports=r,module.exports.default=r;
|
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user