설치 VSCODE 환경 설정 파일

9 0 0
{ "workbench.colorTheme": "Visual Studio Dark", "files.autoSave": "afterDelay", "php.executablePath": "E:\\wwwroot\\webtools\\php8\\php.exe", "php.validate.executablePath": "E:\\wwwroot\\webtools\\php8\\php.exe", "editor.tokenColorCustomizations": { "comments": "#888888" // 주석 색상 지정 }, "editor.formatOnSave": true, // 저장 시 코드 자동정렬 "emmet.includeLanguages": { "javascript": "javascriptreact" // jsx에서 html 태그 자동완성이 안 됐었는데, 이 부분 추가해서 해결했다. }, "[markdown]": { "editor.tabSize": 2, "editor.insertSpaces": true, }, "[html]": { "editor.insertSpaces": true, "editor.tabSize": 2 }, "[css]": { "editor.insertSpaces": true, "editor.tabSize": 2 }, "[javascript]": { "editor.insertSpaces": true, "editor.tabSize": 2 }, "editor.fontSize": 16, }