Import the Angular web app to the back-end project

This commit is contained in:
Florian
2018-05-24 19:51:25 +02:00
parent f55c6aa23b
commit 5a4196dced
90 changed files with 3802 additions and 0 deletions

16
src/main/ts/.vscode/launch.json vendored Executable file
View File

@@ -0,0 +1,16 @@
{
// Utilisez IntelliSense pour en savoir plus sur les attributs possibles.
// Pointez pour afficher la description des attributs existants.
// Pour plus d'informations, visitez : https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "ng serve",
"type": "chrome",
"request": "launch",
"url": "http://localhost:4200/#",
"webRoot": "${workspaceFolder}",
"runtimeExecutable": "/usr/bin/chromium"
},
]
}