2022-07-03から1日間の記事一覧

VSCode 自作スニペット

File>Preference>ConfigureUserSnippets "Arrow function": { "scope": "javascript,typescript", "prefix": "af", "body": [ "($1) => {$2}" ] }, scopeパラメータで適宜言語を加える javascriptreact,typescriptreact等 //参考URL http://www.natural-scie…

VSCode 自作スニペット

File>Preference>ConfigureUserSnippets "Arrow function": { "scope": "javascript,typescript", "prefix": "af", "body": [ "($1) => {$2}" ] },

VSCodeでNodeデバッグ環境

デバッグの環境設定からlaunch.jsonを設定 { // Use IntelliSense to learn about possible attributes. // Hover to view descriptions of existing attributes. // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 "version…