2016-01-09 00:37:34 +03:00
|
|
|
{
|
2017-02-09 15:37:39 +03:00
|
|
|
"name": "cordova-tools",
|
2018-11-08 12:09:11 +03:00
|
|
|
"displayName": "Cordova Tools",
|
2020-10-09 17:36:39 +03:00
|
|
|
"description": "%cordova.description%",
|
2017-11-01 12:44:39 +03:00
|
|
|
"keywords": [
|
|
|
|
"cordova",
|
|
|
|
"ionic",
|
|
|
|
"multi-root ready"
|
|
|
|
],
|
2022-05-23 20:04:51 +03:00
|
|
|
"version": "2.5.0",
|
2017-02-09 15:37:39 +03:00
|
|
|
"private": true,
|
2019-05-24 14:20:36 +03:00
|
|
|
"publisher": "msjsdiag",
|
2017-02-09 15:37:39 +03:00
|
|
|
"icon": "images/icon.png",
|
|
|
|
"galleryBanner": {
|
|
|
|
"color": "#feb943",
|
|
|
|
"theme": "dark"
|
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/Microsoft/vscode-cordova"
|
|
|
|
},
|
|
|
|
"bugs": "https://github.com/Microsoft/vscode-cordova/issues",
|
2020-10-09 17:36:39 +03:00
|
|
|
"license": "%cordova.license%",
|
2017-02-09 15:37:39 +03:00
|
|
|
"engines": {
|
2020-10-09 17:36:39 +03:00
|
|
|
"vscode": "^1.40.0"
|
2017-02-09 15:37:39 +03:00
|
|
|
},
|
|
|
|
"categories": [
|
|
|
|
"Debuggers",
|
2017-03-09 12:46:24 +03:00
|
|
|
"Snippets",
|
2017-02-09 15:37:39 +03:00
|
|
|
"Other"
|
|
|
|
],
|
|
|
|
"activationEvents": [
|
2019-10-14 14:48:48 +03:00
|
|
|
"onDebugResolve:cordova",
|
|
|
|
"onDebugInitialConfigurations",
|
2019-07-04 11:06:16 +03:00
|
|
|
"onCommand:cordova.prepare",
|
|
|
|
"onCommand:cordova.build",
|
|
|
|
"onCommand:cordova.run",
|
|
|
|
"onCommand:ionic.prepare",
|
|
|
|
"onCommand:ionic.build",
|
|
|
|
"onCommand:ionic.run",
|
|
|
|
"onCommand:cordova.simulate.android",
|
|
|
|
"onCommand:cordova.simulate.ios",
|
2018-05-11 13:43:13 +03:00
|
|
|
"workspaceContains:config.xml",
|
|
|
|
"workspaceContains:ionic.config.json"
|
2017-02-09 15:37:39 +03:00
|
|
|
],
|
2020-10-09 17:36:39 +03:00
|
|
|
"extensionKind": [
|
|
|
|
"workspace"
|
|
|
|
],
|
|
|
|
"main": "./src/cordova",
|
2017-02-09 15:37:39 +03:00
|
|
|
"contributes": {
|
|
|
|
"commands": [
|
|
|
|
{
|
|
|
|
"command": "cordova.build",
|
2020-10-09 17:36:39 +03:00
|
|
|
"title": "%cordova.build%",
|
2021-05-17 14:19:04 +03:00
|
|
|
"category": "Cordova",
|
2021-05-20 14:40:47 +03:00
|
|
|
"enablement": "!config.security.workspace.trust.enabled || isWorkspaceTrusted"
|
2017-02-09 15:37:39 +03:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"command": "cordova.run",
|
2020-10-09 17:36:39 +03:00
|
|
|
"title": "%cordova.run%",
|
2021-05-17 14:19:04 +03:00
|
|
|
"category": "Cordova",
|
2021-05-20 14:40:47 +03:00
|
|
|
"enablement": "!config.security.workspace.trust.enabled || isWorkspaceTrusted"
|
2017-02-09 15:37:39 +03:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"command": "cordova.prepare",
|
2020-10-09 17:36:39 +03:00
|
|
|
"title": "%cordova.prepare%",
|
2021-05-17 14:19:04 +03:00
|
|
|
"category": "Cordova",
|
2021-05-20 14:40:47 +03:00
|
|
|
"enablement": "!config.security.workspace.trust.enabled || isWorkspaceTrusted"
|
2017-02-09 15:37:39 +03:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"command": "cordova.simulate.android",
|
2020-10-09 17:36:39 +03:00
|
|
|
"title": "%cordova.simulate.android%",
|
2021-05-17 14:19:04 +03:00
|
|
|
"category": "Cordova",
|
2021-05-20 14:40:47 +03:00
|
|
|
"enablement": "!config.security.workspace.trust.enabled || isWorkspaceTrusted"
|
2017-02-09 15:37:39 +03:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"command": "cordova.simulate.ios",
|
2020-10-09 17:36:39 +03:00
|
|
|
"title": "%cordova.simulate.ios%",
|
2021-05-17 14:19:04 +03:00
|
|
|
"category": "Cordova",
|
2021-05-20 14:40:47 +03:00
|
|
|
"enablement": "!config.security.workspace.trust.enabled || isWorkspaceTrusted"
|
2017-02-09 15:37:39 +03:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"command": "ionic.build",
|
2020-10-09 17:36:39 +03:00
|
|
|
"title": "%cordova.ionic.build%",
|
2021-05-17 14:19:04 +03:00
|
|
|
"category": "Cordova",
|
2021-05-20 14:40:47 +03:00
|
|
|
"enablement": "!config.security.workspace.trust.enabled || isWorkspaceTrusted"
|
2017-02-09 15:37:39 +03:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"command": "ionic.run",
|
2020-10-09 17:36:39 +03:00
|
|
|
"title": "%cordova.ionic.run%",
|
2021-05-17 14:19:04 +03:00
|
|
|
"category": "Cordova",
|
2021-05-20 14:40:47 +03:00
|
|
|
"enablement": "!config.security.workspace.trust.enabled || isWorkspaceTrusted"
|
2017-02-09 15:37:39 +03:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"command": "ionic.prepare",
|
2020-10-09 17:36:39 +03:00
|
|
|
"title": "%cordova.ionic.prepare%",
|
2021-05-17 14:19:04 +03:00
|
|
|
"category": "Cordova",
|
2021-05-20 14:40:47 +03:00
|
|
|
"enablement": "!config.security.workspace.trust.enabled || isWorkspaceTrusted"
|
2020-10-30 13:40:29 +03:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"command": "cordova.restart",
|
|
|
|
"title": "%cordova.restart%",
|
|
|
|
"category": "Cordova",
|
|
|
|
"icon": {
|
|
|
|
"dark": "./images/sync.svg",
|
|
|
|
"light": "./images/sync-light.svg"
|
|
|
|
}
|
2017-02-09 15:37:39 +03:00
|
|
|
}
|
2016-01-09 00:37:34 +03:00
|
|
|
],
|
2017-02-09 15:37:39 +03:00
|
|
|
"keybindings": [
|
|
|
|
{
|
|
|
|
"command": "cordova.build",
|
|
|
|
"key": "f6",
|
2017-03-28 17:10:10 +03:00
|
|
|
"mac": "f6",
|
|
|
|
"when": "!inDebugMode"
|
2017-02-09 15:37:39 +03:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"command": "cordova.run",
|
|
|
|
"key": "ctrl+f5",
|
2017-03-28 17:10:10 +03:00
|
|
|
"mac": "cmd+f5",
|
|
|
|
"when": "!inDebugMode"
|
2017-02-09 15:37:39 +03:00
|
|
|
}
|
2016-01-09 00:37:34 +03:00
|
|
|
],
|
2020-10-30 13:40:29 +03:00
|
|
|
"menus": {
|
|
|
|
"debug/toolBar": [
|
|
|
|
{
|
|
|
|
"command": "cordova.restart",
|
|
|
|
"when": "isCordovaDebugging && debugType == 'pwa-chrome' || isCordovaDebugging && debugType == 'pwa-node' || isCordovaDebugging && debugType == 'cordova'"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"commandPalette": [
|
|
|
|
{
|
|
|
|
"command": "cordova.restart",
|
|
|
|
"when": "false"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
2020-11-09 10:42:20 +03:00
|
|
|
"breakpoints": [
|
|
|
|
{
|
|
|
|
"language": "javascript"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"language": "typescript"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"language": "javascriptreact"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"language": "typescriptreact"
|
|
|
|
}
|
|
|
|
],
|
2017-02-09 15:37:39 +03:00
|
|
|
"debuggers": [
|
|
|
|
{
|
|
|
|
"type": "cordova",
|
|
|
|
"label": "Cordova",
|
|
|
|
"runtime": "node",
|
2020-10-09 17:36:39 +03:00
|
|
|
"configurationSnippets": [
|
2017-02-09 15:37:39 +03:00
|
|
|
{
|
2020-10-09 17:36:39 +03:00
|
|
|
"label": "Cordova: Run Android on device",
|
|
|
|
"description": "%cordova.snippets.androidRunOnDevice%",
|
|
|
|
"body": {
|
|
|
|
"name": "Run Android on device",
|
|
|
|
"type": "cordova",
|
|
|
|
"request": "launch",
|
|
|
|
"platform": "android",
|
|
|
|
"target": "device",
|
|
|
|
"port": 9222,
|
|
|
|
"sourceMaps": true,
|
|
|
|
"cwd": "^\"\\${workspaceFolder}\""
|
|
|
|
}
|
2017-08-04 15:26:25 +03:00
|
|
|
},
|
|
|
|
{
|
2020-10-09 17:36:39 +03:00
|
|
|
"label": "Cordova: Run Android on emulator",
|
|
|
|
"description": "%cordova.snippets.androidRunOnEmulator%",
|
2019-01-31 11:24:31 +03:00
|
|
|
"body": {
|
2020-10-09 17:36:39 +03:00
|
|
|
"name": "Run Android on emulator",
|
2019-01-31 11:24:31 +03:00
|
|
|
"type": "cordova",
|
|
|
|
"request": "launch",
|
|
|
|
"platform": "android",
|
2020-10-09 17:36:39 +03:00
|
|
|
"target": "emulator",
|
|
|
|
"port": 9222,
|
2019-01-31 11:24:31 +03:00
|
|
|
"sourceMaps": true,
|
|
|
|
"cwd": "^\"\\${workspaceFolder}\""
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
2019-02-08 15:14:22 +03:00
|
|
|
"label": "Cordova: Run on iOS device",
|
2020-10-09 17:36:39 +03:00
|
|
|
"description": "%cordova.snippets.iOSRunOnDevice%",
|
2017-03-29 12:04:10 +03:00
|
|
|
"body": {
|
2019-01-31 11:24:31 +03:00
|
|
|
"name": "Run iOS on device",
|
2017-03-29 12:04:10 +03:00
|
|
|
"type": "cordova",
|
|
|
|
"request": "launch",
|
2019-01-31 11:24:31 +03:00
|
|
|
"platform": "ios",
|
2020-10-09 17:36:39 +03:00
|
|
|
"target": "device",
|
|
|
|
"port": 9220,
|
2017-03-29 12:04:10 +03:00
|
|
|
"sourceMaps": true,
|
2018-10-18 17:40:32 +03:00
|
|
|
"cwd": "^\"\\${workspaceFolder}\""
|
2017-03-29 12:04:10 +03:00
|
|
|
}
|
|
|
|
},
|
2022-03-21 19:43:40 +03:00
|
|
|
{
|
|
|
|
"label": "Cordova: Run on iOS simulator - experimental",
|
|
|
|
"description": "%cordova.snippets.iOSRunOnSimulator%",
|
|
|
|
"body": {
|
|
|
|
"name": "Run iOS on simulator - experimental",
|
|
|
|
"type": "cordova",
|
|
|
|
"request": "launch",
|
|
|
|
"platform": "ios",
|
|
|
|
"target": "emulator",
|
|
|
|
"port": 9220,
|
|
|
|
"sourceMaps": true,
|
|
|
|
"cwd": "^\"\\${workspaceFolder}\""
|
|
|
|
}
|
|
|
|
},
|
2017-03-29 12:04:10 +03:00
|
|
|
{
|
2020-10-09 17:36:39 +03:00
|
|
|
"label": "Cordova: Attach to running Android on device",
|
|
|
|
"description": "%cordova.snippets.androidAttachOnDevice%",
|
2019-01-31 11:24:31 +03:00
|
|
|
"body": {
|
2020-10-09 17:36:39 +03:00
|
|
|
"name": "Attach to running Android on device",
|
2019-01-31 11:24:31 +03:00
|
|
|
"type": "cordova",
|
|
|
|
"request": "attach",
|
|
|
|
"platform": "android",
|
2020-10-09 17:36:39 +03:00
|
|
|
"target": "device",
|
|
|
|
"port": 9222,
|
|
|
|
"sourceMaps": true,
|
|
|
|
"cwd": "^\"\\${workspaceFolder}\""
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"label": "Cordova: Attach to running Android on emulator",
|
|
|
|
"description": "%cordova.snippets.androidAttachOnEmulator%",
|
|
|
|
"body": {
|
|
|
|
"name": "Attach to running Android on emulator",
|
|
|
|
"type": "cordova",
|
|
|
|
"request": "attach",
|
|
|
|
"platform": "android",
|
|
|
|
"target": "emulator",
|
|
|
|
"port": 9222,
|
|
|
|
"sourceMaps": true,
|
|
|
|
"cwd": "^\"\\${workspaceFolder}\""
|
2019-01-31 11:24:31 +03:00
|
|
|
}
|
2019-02-08 12:43:15 +03:00
|
|
|
},
|
|
|
|
{
|
2020-10-09 17:36:39 +03:00
|
|
|
"label": "Cordova: Attach to running iOS on device",
|
|
|
|
"description": "%cordova.snippets.iOSAttachOnDevice%",
|
2017-03-29 12:04:10 +03:00
|
|
|
"body": {
|
2020-10-09 17:36:39 +03:00
|
|
|
"name": "Attach to running iOS on device",
|
2017-03-29 12:04:10 +03:00
|
|
|
"type": "cordova",
|
|
|
|
"request": "attach",
|
2019-01-31 11:24:31 +03:00
|
|
|
"platform": "ios",
|
|
|
|
"target": "device",
|
2020-10-09 17:36:39 +03:00
|
|
|
"port": 9220,
|
|
|
|
"sourceMaps": true,
|
|
|
|
"cwd": "^\"\\${workspaceFolder}\""
|
2017-03-29 12:04:10 +03:00
|
|
|
}
|
|
|
|
},
|
2022-03-21 19:43:40 +03:00
|
|
|
{
|
|
|
|
"label": "Cordova: Attach to running iOS on simulator - experimental",
|
|
|
|
"description": "%cordova.snippets.iOSAttachOnSimulator%",
|
|
|
|
"body": {
|
|
|
|
"name": "Attach to running iOS on simulator - experimental",
|
|
|
|
"type": "cordova",
|
|
|
|
"request": "attach",
|
|
|
|
"platform": "ios",
|
|
|
|
"target": "emulator",
|
|
|
|
"port": 9220,
|
|
|
|
"sourceMaps": true,
|
|
|
|
"cwd": "^\"\\${workspaceFolder}\""
|
|
|
|
}
|
|
|
|
},
|
2017-03-29 12:04:10 +03:00
|
|
|
{
|
|
|
|
"label": "Cordova: Serve",
|
2020-10-09 17:36:39 +03:00
|
|
|
"description": "%cordova.snippets.ionicServe%",
|
2017-03-29 12:04:10 +03:00
|
|
|
"body": {
|
2020-10-09 17:36:39 +03:00
|
|
|
"name": "Serve to the browser (Ionic Serve)",
|
2017-03-29 12:04:10 +03:00
|
|
|
"type": "cordova",
|
|
|
|
"request": "launch",
|
2020-10-09 17:36:39 +03:00
|
|
|
"target": "chrome",
|
2017-03-29 12:04:10 +03:00
|
|
|
"platform": "serve",
|
2020-10-09 17:36:39 +03:00
|
|
|
"devServerAddress": "${1:localhost}",
|
2017-03-29 12:04:10 +03:00
|
|
|
"sourceMaps": true,
|
|
|
|
"ionicLiveReload": true,
|
2018-10-18 17:40:32 +03:00
|
|
|
"cwd": "^\"\\${workspaceFolder}\""
|
2017-03-29 12:04:10 +03:00
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
2020-10-09 17:36:39 +03:00
|
|
|
"label": "Cordova: Simulate Android in browser",
|
|
|
|
"description": "%cordova.snippets.simulateAndroid%",
|
|
|
|
"body": {
|
|
|
|
"name": "Simulate Android in browser",
|
|
|
|
"type": "cordova",
|
|
|
|
"request": "launch",
|
|
|
|
"platform": "android",
|
|
|
|
"target": "chrome",
|
|
|
|
"simulatePort": 8000,
|
|
|
|
"livereload": true,
|
|
|
|
"cwd": "^\"\\${workspaceFolder}\"",
|
|
|
|
"sourceMaps": true
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"label": "Cordova: Simulate iOS in browser",
|
|
|
|
"description": "%cordova.snippets.simulateiOS%",
|
|
|
|
"body": {
|
|
|
|
"name": "Simulate iOS in browser",
|
|
|
|
"type": "cordova",
|
|
|
|
"request": "launch",
|
|
|
|
"platform": "ios",
|
|
|
|
"target": "chrome",
|
|
|
|
"simulatePort": 8000,
|
|
|
|
"livereload": true,
|
|
|
|
"cwd": "^\"\\${workspaceFolder}\"",
|
|
|
|
"sourceMaps": true
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"label": "Cordova: Run Browser",
|
|
|
|
"description": "%cordova.snippets.simulateBrowser%",
|
2017-03-29 12:04:10 +03:00
|
|
|
"body": {
|
2020-10-09 17:36:39 +03:00
|
|
|
"name": "Run Browser",
|
2017-03-29 12:04:10 +03:00
|
|
|
"type": "cordova",
|
|
|
|
"request": "launch",
|
2020-10-09 17:36:39 +03:00
|
|
|
"platform": "browser",
|
2017-03-29 12:04:10 +03:00
|
|
|
"target": "chrome",
|
|
|
|
"simulatePort": 8000,
|
|
|
|
"livereload": true,
|
2018-10-18 17:40:32 +03:00
|
|
|
"cwd": "^\"\\${workspaceFolder}\"",
|
2017-03-29 12:04:10 +03:00
|
|
|
"sourceMaps": true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
],
|
2017-02-09 15:37:39 +03:00
|
|
|
"configurationAttributes": {
|
|
|
|
"launch": {
|
|
|
|
"required": [
|
|
|
|
"platform",
|
|
|
|
"cwd"
|
|
|
|
],
|
|
|
|
"properties": {
|
|
|
|
"platform": {
|
|
|
|
"type": "string",
|
2020-10-09 17:36:39 +03:00
|
|
|
"description": "%cordova.properties.launch.platform%"
|
2017-02-09 15:37:39 +03:00
|
|
|
},
|
|
|
|
"cwd": {
|
|
|
|
"type": "string",
|
2020-10-09 17:36:39 +03:00
|
|
|
"description": "%cordova.properties.launch.cwd%"
|
2017-02-09 15:37:39 +03:00
|
|
|
},
|
|
|
|
"target": {
|
2020-10-09 17:36:39 +03:00
|
|
|
"description": "%cordova.properties.launch.target%",
|
2021-11-15 16:50:09 +03:00
|
|
|
"anyOf": [
|
|
|
|
{
|
|
|
|
"type": "string",
|
|
|
|
"enum": [
|
|
|
|
"device",
|
|
|
|
"emulator"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
],
|
2017-02-09 15:37:39 +03:00
|
|
|
"default": "emulator"
|
|
|
|
},
|
|
|
|
"sourceMaps": {
|
|
|
|
"type": "boolean",
|
2020-10-09 17:36:39 +03:00
|
|
|
"description": "%cordova.properties.launch.sourceMaps%",
|
2017-02-09 15:37:39 +03:00
|
|
|
"default": false
|
|
|
|
},
|
2020-10-09 17:36:39 +03:00
|
|
|
"trace": {
|
|
|
|
"type": "boolean",
|
|
|
|
"default": true,
|
|
|
|
"description": "%cordova.properties.launch.trace%"
|
|
|
|
},
|
2017-02-09 15:37:39 +03:00
|
|
|
"port": {
|
|
|
|
"type": "number",
|
2020-10-09 17:36:39 +03:00
|
|
|
"description": "%cordova.properties.launch.port%",
|
2017-02-09 15:37:39 +03:00
|
|
|
"default": 9222
|
|
|
|
},
|
|
|
|
"webkitRangeMin": {
|
|
|
|
"type": "number",
|
2020-10-09 17:36:39 +03:00
|
|
|
"description": "%cordova.properties.launch.webkitRangeMin%",
|
2017-02-09 15:37:39 +03:00
|
|
|
"default": 9223
|
|
|
|
},
|
|
|
|
"webkitRangeMax": {
|
|
|
|
"type": "number",
|
2020-10-09 17:36:39 +03:00
|
|
|
"description": "",
|
2017-02-09 15:37:39 +03:00
|
|
|
"default": 9322
|
|
|
|
},
|
|
|
|
"attachAttempts": {
|
|
|
|
"type": "number",
|
2020-10-09 17:36:39 +03:00
|
|
|
"description": "%cordova.properties.launch.attachAttempts%",
|
2017-02-09 15:37:39 +03:00
|
|
|
"default": 5
|
|
|
|
},
|
|
|
|
"attachDelay": {
|
|
|
|
"type": "number",
|
2020-10-09 17:36:39 +03:00
|
|
|
"description": "%cordova.properties.launch.attachDelay%",
|
2017-02-09 15:37:39 +03:00
|
|
|
"default": 1000
|
|
|
|
},
|
2019-04-23 13:25:36 +03:00
|
|
|
"attachTimeout": {
|
|
|
|
"type": "number",
|
2020-10-09 17:36:39 +03:00
|
|
|
"description": "%cordova.properties.launch.attachTimeout%",
|
2019-04-23 13:25:36 +03:00
|
|
|
"default": 10000
|
|
|
|
},
|
2017-02-09 15:37:39 +03:00
|
|
|
"iosDebugProxyPort": {
|
|
|
|
"type": "number",
|
2020-10-09 17:36:39 +03:00
|
|
|
"description": "%cordova.properties.launch.iosDebugProxyPort%",
|
2017-02-09 15:37:39 +03:00
|
|
|
"default": 9221
|
|
|
|
},
|
|
|
|
"ionicLiveReload": {
|
|
|
|
"type": "boolean",
|
2020-10-09 17:36:39 +03:00
|
|
|
"description": "%cordova.properties.launch.ionicLiveReload%",
|
2017-02-09 15:37:39 +03:00
|
|
|
"default": false
|
|
|
|
},
|
|
|
|
"devServerPort": {
|
|
|
|
"type": "number",
|
2020-10-09 17:36:39 +03:00
|
|
|
"description": "%cordova.properties.launch.devServerPort%"
|
2017-02-09 15:37:39 +03:00
|
|
|
},
|
|
|
|
"devServerAddress": {
|
|
|
|
"type": "string",
|
2020-10-09 17:36:39 +03:00
|
|
|
"description": "%cordova.properties.launch.devServerAddress%"
|
2017-02-09 15:37:39 +03:00
|
|
|
},
|
|
|
|
"devServerTimeout": {
|
|
|
|
"type": "number",
|
2020-10-09 17:36:39 +03:00
|
|
|
"description": "%cordova.properties.launch.devServerTimeout%",
|
2021-08-19 17:02:13 +03:00
|
|
|
"default": 60000
|
2017-02-09 15:37:39 +03:00
|
|
|
},
|
|
|
|
"simulatePort": {
|
|
|
|
"type": "number",
|
2020-10-09 17:36:39 +03:00
|
|
|
"description": "%cordova.properties.launch.simulatePort%",
|
2017-02-09 15:37:39 +03:00
|
|
|
"default": 8000
|
|
|
|
},
|
|
|
|
"livereload": {
|
|
|
|
"type": "boolean",
|
2020-10-09 17:36:39 +03:00
|
|
|
"description": "%cordova.properties.launch.livereload%"
|
|
|
|
},
|
|
|
|
"livereloadDelay": {
|
|
|
|
"type": "number",
|
|
|
|
"description": "%cordova.properties.launch.livereloadDelay%",
|
|
|
|
"default": 200
|
2017-02-09 15:37:39 +03:00
|
|
|
},
|
2020-10-09 17:36:39 +03:00
|
|
|
"forcePrepare": {
|
2017-02-09 15:37:39 +03:00
|
|
|
"type": "boolean",
|
2020-10-09 17:36:39 +03:00
|
|
|
"description": "%cordova.properties.launch.forcePrepare%"
|
2017-02-09 15:37:39 +03:00
|
|
|
},
|
|
|
|
"simulateTempDir": {
|
|
|
|
"type": "string",
|
2020-10-09 17:36:39 +03:00
|
|
|
"description": "%cordova.properties.launch.simulateTempDir%",
|
2018-10-18 17:40:32 +03:00
|
|
|
"default": "${workspaceFolder}/.vscode/simulation"
|
2017-02-09 15:37:39 +03:00
|
|
|
},
|
2020-10-09 17:36:39 +03:00
|
|
|
"corsProxy": {
|
2017-02-09 15:37:39 +03:00
|
|
|
"type": "boolean",
|
2020-10-09 17:36:39 +03:00
|
|
|
"description": "%cordova.properties.launch.corsProxy%",
|
2017-02-09 15:37:39 +03:00
|
|
|
"default": true
|
2017-10-09 13:46:18 +03:00
|
|
|
},
|
|
|
|
"runArguments": {
|
|
|
|
"type": "array",
|
2020-10-09 17:36:39 +03:00
|
|
|
"description": "%cordova.properties.launch.runArguments%"
|
2017-11-08 11:15:09 +03:00
|
|
|
},
|
2018-08-07 15:59:21 +03:00
|
|
|
"cordovaExecutable": {
|
|
|
|
"type": "string",
|
2020-10-09 17:36:39 +03:00
|
|
|
"description": "%cordova.properties.launch.cordovaExecutable%"
|
2018-08-07 15:59:21 +03:00
|
|
|
},
|
|
|
|
"env": {
|
|
|
|
"type": "object",
|
|
|
|
"additionalProperties": {
|
|
|
|
"type": "string"
|
|
|
|
},
|
2020-10-09 17:36:39 +03:00
|
|
|
"description": "%cordova.properties.launch.env%",
|
2018-08-07 15:59:21 +03:00
|
|
|
"default": {}
|
|
|
|
},
|
|
|
|
"envFile": {
|
|
|
|
"type": "string",
|
2020-10-09 17:36:39 +03:00
|
|
|
"description": "%cordova.properties.launch.envFile%",
|
2018-08-07 15:59:21 +03:00
|
|
|
"default": "${workspaceFolder}/.env"
|
|
|
|
},
|
2017-11-08 11:15:09 +03:00
|
|
|
"skipFiles": {
|
|
|
|
"type": "array",
|
2020-10-09 17:36:39 +03:00
|
|
|
"description": "%cordova.properties.launch.skipFiles%",
|
2017-11-08 11:15:09 +03:00
|
|
|
"default": []
|
2018-10-18 17:40:32 +03:00
|
|
|
},
|
|
|
|
"pathMapping": {
|
|
|
|
"type": "object",
|
2020-10-09 17:36:39 +03:00
|
|
|
"description": "%cordova.properties.launch.pathMapping%",
|
2018-10-18 17:40:32 +03:00
|
|
|
"default": {
|
|
|
|
"/": "${workspaceFolder}"
|
|
|
|
}
|
|
|
|
},
|
2020-10-29 14:23:53 +03:00
|
|
|
"runtimeVersion": {
|
|
|
|
"type": "string",
|
|
|
|
"description": "%cordova.properties.launch.runtimeVersion%"
|
|
|
|
},
|
2018-10-18 17:40:32 +03:00
|
|
|
"sourceMapPathOverrides": {
|
|
|
|
"type": "object",
|
2020-10-09 17:36:39 +03:00
|
|
|
"description": "%cordova.properties.launch.sourceMapPathOverrides%",
|
2018-10-18 17:40:32 +03:00
|
|
|
"default": {
|
|
|
|
"webpack:///./*": "${cwd}/*",
|
|
|
|
"webpack:///src/*": "${cwd}/*",
|
|
|
|
"webpack:///*": "*",
|
2019-09-06 15:44:54 +03:00
|
|
|
"webpack:///./~/*": "${cwd}/node_modules/*",
|
|
|
|
"./*": "${cwd}/*"
|
2018-10-18 17:40:32 +03:00
|
|
|
}
|
2022-01-24 13:39:02 +03:00
|
|
|
},
|
|
|
|
"spaUrlRewrites": {
|
|
|
|
"type": "boolean",
|
|
|
|
"description": "%cordova.properties.launch.spaUrlRewrites%",
|
|
|
|
"default": false
|
2017-02-09 15:37:39 +03:00
|
|
|
}
|
2016-03-15 20:36:31 +03:00
|
|
|
}
|
2017-02-09 15:37:39 +03:00
|
|
|
},
|
|
|
|
"attach": {
|
|
|
|
"required": [
|
|
|
|
"platform",
|
|
|
|
"cwd"
|
|
|
|
],
|
|
|
|
"properties": {
|
|
|
|
"platform": {
|
|
|
|
"type": "string",
|
2020-10-09 17:36:39 +03:00
|
|
|
"description": "%cordova.properties.attach.platform%"
|
2017-02-09 15:37:39 +03:00
|
|
|
},
|
|
|
|
"cwd": {
|
|
|
|
"type": "string",
|
2020-10-09 17:36:39 +03:00
|
|
|
"description": "%cordova.properties.attach.cwd%"
|
2017-02-09 15:37:39 +03:00
|
|
|
},
|
|
|
|
"target": {
|
|
|
|
"type": "string",
|
2020-10-09 17:36:39 +03:00
|
|
|
"description": "%cordova.properties.attach.target%",
|
2017-02-09 15:37:39 +03:00
|
|
|
"default": "emulator"
|
|
|
|
},
|
|
|
|
"sourceMaps": {
|
|
|
|
"type": "boolean",
|
2020-10-09 17:36:39 +03:00
|
|
|
"description": "%cordova.properties.attach.sourceMaps%",
|
2017-02-09 15:37:39 +03:00
|
|
|
"default": false
|
|
|
|
},
|
|
|
|
"port": {
|
|
|
|
"type": "number",
|
2020-10-09 17:36:39 +03:00
|
|
|
"description": "%cordova.properties.attach.port%",
|
2017-02-09 15:37:39 +03:00
|
|
|
"default": 9222
|
|
|
|
},
|
2020-10-09 17:36:39 +03:00
|
|
|
"trace": {
|
|
|
|
"type": "boolean",
|
|
|
|
"default": true,
|
|
|
|
"description": "%cordova.properties.attach.trace%"
|
|
|
|
},
|
2017-02-09 15:37:39 +03:00
|
|
|
"webkitRangeMin": {
|
|
|
|
"type": "number",
|
2020-10-09 17:36:39 +03:00
|
|
|
"description": "%cordova.properties.attach.webkitRangeMin%",
|
2017-02-09 15:37:39 +03:00
|
|
|
"default": 9223
|
|
|
|
},
|
|
|
|
"webkitRangeMax": {
|
|
|
|
"type": "number",
|
2020-10-09 17:36:39 +03:00
|
|
|
"description": "%cordova.properties.attach.webkitRangeMax%",
|
2017-02-09 15:37:39 +03:00
|
|
|
"default": 9322
|
|
|
|
},
|
|
|
|
"attachAttempts": {
|
|
|
|
"type": "number",
|
2020-10-09 17:36:39 +03:00
|
|
|
"description": "%cordova.properties.attach.attachAttempts%",
|
2017-02-09 15:37:39 +03:00
|
|
|
"default": 5
|
|
|
|
},
|
|
|
|
"attachDelay": {
|
|
|
|
"type": "number",
|
2020-10-09 17:36:39 +03:00
|
|
|
"description": "%cordova.properties.attach.attachDelay%",
|
2017-02-09 15:37:39 +03:00
|
|
|
"default": 1000
|
2017-11-08 11:15:09 +03:00
|
|
|
},
|
2019-04-23 13:25:36 +03:00
|
|
|
"attachTimeout": {
|
|
|
|
"type": "number",
|
2020-10-09 17:36:39 +03:00
|
|
|
"description": "%cordova.properties.attach.attachTimeout%",
|
2019-04-23 13:25:36 +03:00
|
|
|
"default": 10000
|
|
|
|
},
|
2017-11-08 11:15:09 +03:00
|
|
|
"skipFiles": {
|
|
|
|
"type": "array",
|
2020-10-09 17:36:39 +03:00
|
|
|
"description": "%cordova.properties.attach.skipFiles%",
|
2017-11-08 11:15:09 +03:00
|
|
|
"default": []
|
2018-10-18 17:40:32 +03:00
|
|
|
},
|
|
|
|
"pathMapping": {
|
|
|
|
"type": "object",
|
2020-10-09 17:36:39 +03:00
|
|
|
"description": "%cordova.properties.attach.pathMapping%",
|
2018-10-18 17:40:32 +03:00
|
|
|
"default": {
|
|
|
|
"/": "${workspaceFolder}"
|
|
|
|
}
|
|
|
|
},
|
2019-02-13 16:13:42 +03:00
|
|
|
"ionicLiveReload": {
|
|
|
|
"type": "boolean",
|
2020-10-09 17:36:39 +03:00
|
|
|
"description": "%cordova.properties.attach.ionicLiveReload%",
|
2019-02-13 16:13:42 +03:00
|
|
|
"default": false
|
|
|
|
},
|
2018-10-18 17:40:32 +03:00
|
|
|
"sourceMapPathOverrides": {
|
|
|
|
"type": "object",
|
2020-10-09 17:36:39 +03:00
|
|
|
"description": "%cordova.properties.attach.sourceMapPathOverrides%",
|
2018-10-18 17:40:32 +03:00
|
|
|
"default": {
|
|
|
|
"webpack:///./*": "${cwd}/*",
|
|
|
|
"webpack:///src/*": "${cwd}/*",
|
|
|
|
"webpack:///*": "*",
|
2019-09-06 15:44:54 +03:00
|
|
|
"webpack:///./~/*": "${cwd}/node_modules/*",
|
|
|
|
"./*": "${cwd}/*"
|
2018-10-18 17:40:32 +03:00
|
|
|
}
|
2017-02-09 15:37:39 +03:00
|
|
|
}
|
2016-01-09 00:37:34 +03:00
|
|
|
}
|
2017-02-09 15:37:39 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-10-24 22:52:47 +03:00
|
|
|
],
|
2017-10-31 09:52:39 +03:00
|
|
|
"configuration": [
|
2017-10-24 22:52:47 +03:00
|
|
|
{
|
2018-11-08 12:09:11 +03:00
|
|
|
"title": "Cordova Tools",
|
2017-10-24 22:52:47 +03:00
|
|
|
"properties": {
|
|
|
|
"cordova.runArguments": {
|
|
|
|
"type": "array",
|
|
|
|
"default": [],
|
2020-10-09 17:36:39 +03:00
|
|
|
"description": "%cordova.configuration.properties.cordova.runArguments%",
|
2017-11-01 12:44:39 +03:00
|
|
|
"scope": "resource"
|
2017-11-24 14:05:07 +03:00
|
|
|
},
|
2018-08-07 15:59:21 +03:00
|
|
|
"cordova.cordovaExecutable": {
|
|
|
|
"type": "string",
|
|
|
|
"default": "",
|
2020-10-09 17:36:39 +03:00
|
|
|
"description": "%cordova.configuration.properties.cordova.cordovaExecutable%",
|
2018-08-07 15:59:21 +03:00
|
|
|
"scope": "resource"
|
|
|
|
},
|
|
|
|
"cordova.env": {
|
|
|
|
"type": "object",
|
|
|
|
"additionalProperties": {
|
|
|
|
"type": "string"
|
|
|
|
},
|
2020-10-09 17:36:39 +03:00
|
|
|
"description": "%cordova.configuration.properties.cordova.env%",
|
2018-08-07 15:59:21 +03:00
|
|
|
"default": {},
|
|
|
|
"scope": "resource"
|
|
|
|
},
|
|
|
|
"cordova.envFile": {
|
|
|
|
"type": "string",
|
2020-10-09 17:36:39 +03:00
|
|
|
"description": "%cordova.configuration.properties.cordova.envFile%",
|
2018-08-07 15:59:21 +03:00
|
|
|
"scope": "resource"
|
2017-10-24 22:52:47 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-02-09 15:37:39 +03:00
|
|
|
]
|
|
|
|
},
|
2021-05-17 14:19:04 +03:00
|
|
|
"capabilities": {
|
|
|
|
"virtualWorkspaces": false,
|
|
|
|
"untrustedWorkspaces": {
|
|
|
|
"supported": "limited",
|
|
|
|
"description": "%cordova.workspaceTrust.description%"
|
|
|
|
}
|
|
|
|
},
|
2017-02-09 15:37:39 +03:00
|
|
|
"scripts": {
|
2020-10-09 17:36:39 +03:00
|
|
|
"build": "gulp build",
|
|
|
|
"test": "node ./test/runTest.js",
|
2017-09-11 11:41:39 +03:00
|
|
|
"vscode:prepublish": "gulp"
|
2017-02-09 15:37:39 +03:00
|
|
|
},
|
2022-06-22 15:32:48 +03:00
|
|
|
"prettier": {
|
|
|
|
"trailingComma": "all",
|
|
|
|
"arrowParens": "avoid",
|
|
|
|
"printWidth": 100,
|
|
|
|
"tabWidth": 4,
|
|
|
|
"endOfLine": "auto",
|
|
|
|
"overrides": [
|
|
|
|
{
|
|
|
|
"files": [
|
|
|
|
"*.md"
|
|
|
|
],
|
|
|
|
"options": {
|
|
|
|
"tabWidth": 2,
|
|
|
|
"printWidth": 80
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
2017-02-09 15:37:39 +03:00
|
|
|
"dependencies": {
|
2022-06-22 15:32:48 +03:00
|
|
|
"@mixer/parallel-prettier": "^2.0.2",
|
2017-02-09 15:37:39 +03:00
|
|
|
"elementtree": "^0.1.6",
|
2020-10-09 17:36:39 +03:00
|
|
|
"execa": "^4.0.0",
|
2022-06-22 15:32:48 +03:00
|
|
|
"gulp-mocha": "^8.0.0",
|
2020-10-09 17:36:39 +03:00
|
|
|
"ip": "^1.1.5",
|
2022-04-14 12:15:08 +03:00
|
|
|
"plist": "^3.0.5",
|
2022-03-21 19:43:40 +03:00
|
|
|
"semver": "^6.3.0",
|
2022-06-22 15:32:48 +03:00
|
|
|
"socket.io-client": "2.4.0",
|
2020-10-30 13:40:29 +03:00
|
|
|
"uuid": "^8.3.1",
|
2020-10-09 17:36:39 +03:00
|
|
|
"vscode-cdp-proxy": "^0.2.0",
|
2020-03-16 15:58:17 +03:00
|
|
|
"vscode-debugadapter": "^1.39.1",
|
2020-10-09 17:36:39 +03:00
|
|
|
"vscode-debugprotocol": "^1.40.0",
|
2017-02-09 15:37:39 +03:00
|
|
|
"vscode-extension-telemetry": "0.0.5",
|
2020-10-09 17:36:39 +03:00
|
|
|
"vscode-js-debug-browsers": "^1.0.0",
|
|
|
|
"vscode-nls": "^4.1.2",
|
2019-04-12 17:34:25 +03:00
|
|
|
"winreg": "0.0.13",
|
2020-07-30 16:06:45 +03:00
|
|
|
"xcode": "^3.0.1"
|
2017-02-09 15:37:39 +03:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2020-10-09 17:36:39 +03:00
|
|
|
"@types/elementtree": "^0.1.0",
|
2019-07-11 13:35:42 +03:00
|
|
|
"@types/fancy-log": "^1.3.1",
|
2020-10-09 17:36:39 +03:00
|
|
|
"@types/mocha": "^8.0.3",
|
2020-03-16 15:58:17 +03:00
|
|
|
"@types/node": "^10.17.17",
|
|
|
|
"@types/rimraf": "^2.0.3",
|
2018-05-29 16:55:52 +03:00
|
|
|
"@types/semver": "^5.5.0",
|
2020-10-09 17:36:39 +03:00
|
|
|
"@types/sinon": "^9.0.7",
|
2021-05-17 14:19:04 +03:00
|
|
|
"@types/socket.io-client": "^1.4.36",
|
2020-10-30 13:40:29 +03:00
|
|
|
"@types/uuid": "^8.3.0",
|
2020-10-09 17:36:39 +03:00
|
|
|
"@types/vscode": "1.40.0",
|
|
|
|
"@typescript-eslint/eslint-plugin": "^4.2.0",
|
2022-06-22 15:32:48 +03:00
|
|
|
"@typescript-eslint/parser": "^4.33.0",
|
2022-05-23 18:28:44 +03:00
|
|
|
"cordova-simulate": "^1.1.3",
|
2019-01-17 16:57:34 +03:00
|
|
|
"del": "^2.2.2",
|
2020-10-09 17:36:39 +03:00
|
|
|
"devtools-protocol": "0.0.760817",
|
2021-10-26 17:26:46 +03:00
|
|
|
"eslint": "^7.32.0",
|
2022-06-22 15:32:48 +03:00
|
|
|
"eslint-config-prettier": "^7.2.0",
|
|
|
|
"eslint-import-resolver-node": "^0.3.4",
|
|
|
|
"eslint-import-resolver-typescript": "^2.7.1",
|
2020-10-09 17:36:39 +03:00
|
|
|
"eslint-plugin-header": "^3.1.0",
|
2022-06-22 15:32:48 +03:00
|
|
|
"eslint-plugin-import": "^2.26.0",
|
|
|
|
"eslint-plugin-prettier": "^4.0.0",
|
|
|
|
"eslint-plugin-promise": "^4.3.1",
|
|
|
|
"eslint-plugin-unicorn": "^28.0.2",
|
2020-10-09 17:36:39 +03:00
|
|
|
"event-stream": "3.3.4",
|
2019-07-11 13:35:42 +03:00
|
|
|
"fancy-log": "^1.3.3",
|
2022-05-23 16:39:29 +03:00
|
|
|
"glob": "^7.2.0",
|
2020-03-16 15:58:17 +03:00
|
|
|
"gulp": "^4.0.2",
|
2020-10-09 17:36:39 +03:00
|
|
|
"gulp-filter": "^6.0.0",
|
2022-06-22 15:32:48 +03:00
|
|
|
"gulp-preprocess": "^4.0.2",
|
2020-03-16 15:58:17 +03:00
|
|
|
"gulp-sourcemaps": "^2.6.5",
|
2019-06-21 14:06:56 +03:00
|
|
|
"gulp-typescript": "^5.0.1",
|
2022-04-14 12:03:51 +03:00
|
|
|
"minimist": "^1.2.6",
|
2022-01-24 17:07:08 +03:00
|
|
|
"mocha": "^9.2.0",
|
2022-06-22 15:32:48 +03:00
|
|
|
"prettier": "2.6.2",
|
2020-03-16 15:58:17 +03:00
|
|
|
"rimraf": "^2.7.1",
|
2018-05-29 16:55:52 +03:00
|
|
|
"should": "^13.2.1",
|
2020-10-09 17:36:39 +03:00
|
|
|
"sinon": "^9.1.0",
|
2021-04-12 12:55:03 +03:00
|
|
|
"ts-loader": "^8.1.0",
|
2020-10-09 17:36:39 +03:00
|
|
|
"typescript": "^3.8.3",
|
2022-05-23 16:39:29 +03:00
|
|
|
"vsce": "^2.7.0",
|
2022-01-24 17:07:08 +03:00
|
|
|
"vscode-nls-dev": "^4.0.0",
|
2020-10-09 17:36:39 +03:00
|
|
|
"vscode-test": "^1.4.0",
|
2021-04-12 12:55:03 +03:00
|
|
|
"webpack": "^5.31.2",
|
|
|
|
"webpack-bundle-analyzer": "^4.4.0"
|
2017-02-09 15:37:39 +03:00
|
|
|
}
|
2016-01-09 00:37:34 +03:00
|
|
|
}
|