diff --git a/.gitignore b/.gitignore index 6a032367..00ddfc17 100644 --- a/.gitignore +++ b/.gitignore @@ -20,7 +20,7 @@ pnpm-debug.log* # Editor directories and files .idea -.vscode +# .vscode *.suo *.ntvs* *.njsproj diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 00000000..13566aff --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,11 @@ +{ + // 日々付け替えられるナイトリービルド (1.x.x-dev) のタグがローカルと競合するため、 + // リモートで追加されたタグを自動ではローカルに反映しない + "git.pullTags": false, + // 保存時に ESLint による自動フォーマットを行う + "editor.codeActionsOnSave": { + "source.fixAll.eslint": "explicit", + }, + // TypeScript の SDK をプロジェクトの node_modules から読み込む + "typescript.tsdk": "node_modules/typescript/lib", +}