Initial import NDC_1C

This commit is contained in:
2026-03-26 10:38:25 +03:00
commit a162d77ef7
2943 changed files with 3615871 additions and 0 deletions
+59
View File
@@ -0,0 +1,59 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "NDC: Install All",
"type": "shell",
"command": "cmd",
"args": ["/c", "npm.cmd run install:all"],
"options": {
"cwd": "${workspaceFolder}"
},
"problemMatcher": []
},
{
"label": "NDC: Dev All (Backend + Frontend)",
"type": "shell",
"command": "cmd",
"args": ["/c", "npm.cmd run dev:all"],
"isBackground": true,
"options": {
"cwd": "${workspaceFolder}"
},
"problemMatcher": [
{
"pattern": [
{
"regexp": "."
}
],
"background": {
"activeOnStart": true,
"beginsPattern": ".",
"endsPattern": "Local:"
}
}
]
},
{
"label": "NDC: Build All",
"type": "shell",
"command": "cmd",
"args": ["/c", "npm.cmd run build:all"],
"options": {
"cwd": "${workspaceFolder}"
},
"problemMatcher": []
},
{
"label": "NDC: Test Backend",
"type": "shell",
"command": "cmd",
"args": ["/c", "npm.cmd run test:backend"],
"options": {
"cwd": "${workspaceFolder}"
},
"problemMatcher": []
}
]
}