first draft
This commit is contained in:
19
.vscode/launch.json
vendored
19
.vscode/launch.json
vendored
@@ -1,20 +1,23 @@
|
||||
{
|
||||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
||||
"version": "0.2.0",
|
||||
"configurations": [
|
||||
{
|
||||
"name": "ng serve",
|
||||
"type": "chrome",
|
||||
"request": "launch",
|
||||
"preLaunchTask": "npm: start",
|
||||
"url": "http://localhost:4200/"
|
||||
"name": "Debug (standalone client)",
|
||||
"url": "http://localhost:4201/",
|
||||
"webRoot": "${workspaceFolder}",
|
||||
"sourceMaps": true,
|
||||
"skipFiles": ["<node_internals>/**", "**/node_modules/**"]
|
||||
},
|
||||
{
|
||||
"name": "ng test",
|
||||
"type": "chrome",
|
||||
"request": "launch",
|
||||
"preLaunchTask": "npm: test",
|
||||
"url": "http://localhost:9876/debug.html"
|
||||
"name": "Debug (plugin loaded inside Phoenix)",
|
||||
"url": "https://localhost:4200/admin/customElements",
|
||||
"webRoot": "${workspaceFolder}",
|
||||
"sourceMaps": true,
|
||||
"skipFiles": ["<node_internals>/**", "**/node_modules/**"]
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
27
.vscode/sessions.json
vendored
Normal file
27
.vscode/sessions.json
vendored
Normal file
@@ -0,0 +1,27 @@
|
||||
{
|
||||
"$schema": "https://cdn.statically.io/gh/nguyenngoclongdev/cdn/main/schema/v11/terminal-keeper.json",
|
||||
"theme": "tribe",
|
||||
"active": "default",
|
||||
"activateOnStartup": false,
|
||||
"keepExistingTerminals": true,
|
||||
"sessions": {
|
||||
"default": [
|
||||
[
|
||||
{
|
||||
"name": "plugin",
|
||||
"commands": [
|
||||
"clear && yarn plugin"
|
||||
],
|
||||
"autoExecuteCommands": true
|
||||
},
|
||||
{
|
||||
"name": "client",
|
||||
"commands": [
|
||||
"clear && yarn client"
|
||||
],
|
||||
"autoExecuteCommands": true
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
}
|
||||
10
.vscode/settings.json
vendored
Normal file
10
.vscode/settings.json
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"cSpell.words": [
|
||||
"BASEMODEL",
|
||||
"emptymessage",
|
||||
"iconfield",
|
||||
"inputicon",
|
||||
"inputtext",
|
||||
"selectbutton"
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user