Skip to content

TypeScript 3.9.md dvlprsh 부분 번역 (resolve #69) #75

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 8 commits into from
May 17, 2020
Merged
Prev Previous commit
Next Next commit
Update pages/release notes/TypeScript 3.9.md
Co-authored-by: Kibeom Kwon <kgbum2222@gmail.com>
  • Loading branch information
dvlprsh and bumkeyy authored May 17, 2020
commit 0e60cdabf97744e6cd826cf5a4189587d19a41c4
2 changes: 1 addition & 1 deletion pages/release notes/TypeScript 3.9.md
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ expect(() => {
```

그래서 TypeScript 3.9는 새로운 기능을 도입했습니다: `// @ts-expect-error` 주석.
라인 앞에 '// @ts-expect-error' 주석이 붙어 있을 경우, TypeScript는 해당 오류를 보고하는 것을 멈춥니다;
라인 앞에 `// @ts-expect-error` 주석이 붙어 있을 경우, TypeScript는 해당 오류를 보고하는 것을 멈춥니다;
그러나 오류가 존재하지 않으면, TypeScript는 `// @ts-expect-error`가 필요하지 않다고 보고할 것입니다.

간단한 예로, 다음 코드는 괜찮습니다
Expand Down