A virtual newsroom powered by RSS and AI.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

38 lines
1.1 KiB

{
// 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",
"name": "Worker",
"program": "${workspaceFolder}/src/workers/newsroom.ts",
"request": "launch",
"skipFiles": [
"<node_internals>/**"
],
"outFiles": [/* needs to be empty so VS Code will debug .ts sources */],
"console": "integratedTerminal",
"runtimeArgs": [
"--import", "./register.js",
"--no-warnings"
]
},
{
"type": "node",
"request": "launch",
"name": "Web",
"skipFiles": [
"<node_internals>/**"
],
"outFiles": [/* needs to be empty so VS Code will debug .ts sources */],
"program": "${workspaceFolder}/src/newsroom-web.ts",
"console": "integratedTerminal",
"runtimeArgs": [
"--import", "./register.js",
"--no-warnings"
]
}
]
}