Skip to content

MEAN Stack with Angular 4 and Typescript Node. Application to sell & buy grocery online.

License

Notifications You must be signed in to change notification settings

mygroceryboy/mygroceryboy

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

87 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

mygroceryboy

MEAN Stack with Angular 2 and Typescript Node. Application to sell & buy grocery online.

launch.json

{
    "version": "0.2.0",
    "configurations": [
        {
            "type": "node",
            "request": "launch",
            "name": "Debug Program",
            "program": "${workspaceRoot}/server/server.ts",
            "cwd": "${workspaceRoot}",
            "env": {
                "NODE_ENV": "development"
            },
            "skipFiles": [
                "node_modules/**/*.js"
            ],
            "outFiles": [
                "${workspaceRoot}/dist/**/*.js"
            ],
            "stopOnEntry": true,
            "console": "internalConsole"
        },
        {
            "type": "node",
            "request": "attach",
            "name": "Attach to Port",
            "address": "localhost",
            "port": 3000,
            "outFiles": []
        }
    ]
}