- Updated the Node.js version in .nvmrc from 22.6.0 to 24.0.0-nightly for compatibility with the latest features. - Modified the launch.json configuration to reflect the new Node.js runtime path, ensuring the development environment is aligned with the updated version. - Cleaned up whitespace in document.service.ts for improved code readability. These changes ensure the project is using the latest Node.js version and maintain a clean and efficient development setup.
27 lines
836 B
JSON
27 lines
836 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": [
|
|
|
|
{
|
|
"name": "Attach by Process ID",
|
|
"processId": "${command:PickProcess}",
|
|
"request": "attach",
|
|
"skipFiles": ["<node_internals>/**"],
|
|
"type": "node"
|
|
},
|
|
{
|
|
"type": "node",
|
|
"request": "launch",
|
|
"name": "Launch Program",
|
|
"runtimeExecutable": "C:\\Users\\AliensVN\\AppData\\Roaming\\fnm\\node-versions\\v24.0.0-nightly202412106c03beba46\\installation\\node.exe",
|
|
"skipFiles": ["<node_internals>/**"],
|
|
"cwd": "${workspaceFolder}",
|
|
"program": "${file}",
|
|
"outFiles": ["${workspaceFolder}/**/*.js"]
|
|
}
|
|
]
|
|
}
|