プラグイン初期作成

This commit is contained in:
2025-01-12 17:40:08 +09:00
commit 6d2bc0f2aa
59 changed files with 9263 additions and 0 deletions

15
data-fetch-pluging/.vscode/launch.json vendored Normal file
View File

@@ -0,0 +1,15 @@
{
// IntelliSense を使用して利用可能な属性を学べます。
// 既存の属性の説明をホバーして表示します。
// 詳細情報は次を確認してください: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "chrome",
"request": "launch",
"name": "localhost に対して Chrome を起動する",
"url": "http://localhost:8080",
"webRoot": "${workspaceFolder}"
}
]
}