# EditorConfig is awesome: <https://EditorConfig.org>

# top-most EditorConfig file
root = true

[*]
indent_style = space
indent_size = 4
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = false
insert_final_newline = false

[*.{html,css,js,jsx,json}]
indent_style = space
indent_size = 2
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = false
insert_final_newline = false

.editorconfig

// 경로 : .vscode/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": "0.2.0",
    "configurations": [
        {
            "type": "node",
            "request": "launch",
            "name": "express",
            "cwd": "${workspaceFolder}/server",
            "program": "app.js",
            "skipFiles": [
                "node_modules/**",
            ]
        }
    ]
}

launch.json