<!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit - **Documentation** - Updated the "Supported Versions" section in the SECURITY.md file to reflect that security updates are now provided for versions 3.0.0 and above. - Minor formatting adjustments made in the "Disclosure Policy" section for consistency. - **Chores** - Simplified debugger configurations by removing explicit protocol and port settings from the `.vscode/launch.json` file. <!-- end of auto-generated comment: release notes by coderabbit.ai --> --------- Co-authored-by: elrrrrrrr <elrrrrrrr@gmail.com>
37 lines
838 B
JSON
37 lines
838 B
JSON
{
|
|
// Use IntelliSense to learn about possible attributes.
|
|
// Hover to view descriptions of existing attributes.
|
|
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"type": "node",
|
|
"request": "launch",
|
|
"name": "Egg Debug",
|
|
"runtimeExecutable": "npm",
|
|
"runtimeArgs": [
|
|
"run",
|
|
"dev",
|
|
"--",
|
|
"--inspect-brk"
|
|
],
|
|
"console": "integratedTerminal",
|
|
"restart": true,
|
|
"autoAttachChildProcesses": true
|
|
},
|
|
{
|
|
"type": "node",
|
|
"request": "launch",
|
|
"name": "Egg Test",
|
|
"runtimeExecutable": "npm",
|
|
"runtimeArgs": [
|
|
"run",
|
|
"test-local",
|
|
"--",
|
|
"--inspect-brk"
|
|
],
|
|
"autoAttachChildProcesses": true
|
|
}
|
|
]
|
|
}
|