feat: upgrade setting (prettier, eslint, typescript) #39
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
1. 패키지 전반적으로 업데이트
2. vscode 1.89를 사용하고 있어서 발생한 에러 수정 😤
[error] TSServer exited. Code: 1. Signal: null
에러createFileSystemWatcher
crashes with yarn PnP microsoft/vscode#212042canUseWatchEvents
옵션이 추가되었는데 (https://code.visualstudio.com/updates/v1_89#_typescript), 이게 default로 true로 되어있는지, tsserver 실행시 이 옵션이 반영되고, 이때 vscode 에서 crash 발생,,canUseWatchEvents
옵션은 ts에서 file watching이 필요할 때, VSCode의 file watcher를 사용할지 여부를 제어하는 옵션이다. 원래 ts는 자체 구현한 node.js 기반의 file watcher를 사용하는데, vscode꺼를 사용하면 효율적이고 안정적이며 리소스를 덜 소모한다고 한다.