first commit

This commit is contained in:
2025-11-11 11:19:13 +07:00
parent c838b2a979
commit fe028d274b
64 changed files with 8125 additions and 0 deletions

4
templete/.vscode/extensions.json vendored Normal file
View File

@@ -0,0 +1,4 @@
{
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=827846
"recommendations": ["angular.ng-template"]
}

33
templete/.vscode/launch.json vendored Normal file
View File

@@ -0,0 +1,33 @@
// {
// // 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": "ng test",
// "type": "chrome",
// "request": "launch",
// "preLaunchTask": "npm: test",
// "url": "http://localhost:9876/debug.html"
// }
// ]
// }
{
"version": "0.2.0",
"configurations": [
{
"name": "Launch Chrome against localhost",
"type": "chrome",
"request": "launch",
"url": "http://localhost:4200",
"webRoot": "${workspaceFolder}"
}
]
}

42
templete/.vscode/tasks.json vendored Normal file
View File

@@ -0,0 +1,42 @@
{
// For more information, visit: https://go.microsoft.com/fwlink/?LinkId=733558
"version": "2.0.0",
"tasks": [
{
"type": "npm",
"script": "start",
"isBackground": true,
"problemMatcher": {
"owner": "typescript",
"pattern": "$tsc",
"background": {
"activeOnStart": true,
"beginsPattern": {
"regexp": "(.*?)"
},
"endsPattern": {
"regexp": "bundle generation complete"
}
}
}
},
{
"type": "npm",
"script": "test",
"isBackground": true,
"problemMatcher": {
"owner": "typescript",
"pattern": "$tsc",
"background": {
"activeOnStart": true,
"beginsPattern": {
"regexp": "(.*?)"
},
"endsPattern": {
"regexp": "bundle generation complete"
}
}
}
}
]
}