Update vscode files

This commit is contained in:
Xavier Guimard 2018-06-13 11:52:02 +02:00
parent 2f008fc490
commit dab7664462
3 changed files with 41 additions and 0 deletions

1
.gitignore vendored
View File

@ -1,4 +1,5 @@
.gitignore
.vstags
node_modules
e2e-tests/conf
lemonldap-ng-common/MYMETA.json

30
.vscode/launch.json vendored Normal file
View File

@ -0,0 +1,30 @@
{
// 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": "perl",
"request": "launch",
"name": "Perl-Debug local",
"program": "${workspaceFolder}/${relativeFile}",
"exec": "perl",
"execArgs": [],
"root": "${workspaceRoot}/",
"inc": ["./lemonldap-ng-common/blib/lib","./lemonldap-ng-handler/blib/lib","./lemonldap-ng-portal/blib/lib","./lemonldap-ng-manager/blib/lib"],
"args": [],
"env": {},
"stopOnEntry": true
},
{
"type": "perl",
"request": "launch",
"name": "Perl-Debug remote",
"program": "${workspaceFolder}/${relativeFile}",
"root": "${workspaceRoot}/",
"stopOnEntry": true,
"port": 5000
}
]
}

10
.vscode/settings.json vendored Normal file
View File

@ -0,0 +1,10 @@
{
"perl-toolbox.syntax.exec": "llperl",
"perl-toolbox.syntax.path": "/home/xavier/bin/",
"perlSyntax.includePaths": [
"./lemonldap-ng-common/blib/lib",
"./lemonldap-ng-handler/blib/lib",
"./lemonldap-ng-portal/blib/lib",
"./lemonldap-ng-manager/blib/lib"
]
}