Skip to content

Commit

Permalink
revert: update moduleResolution value casing
Browse files Browse the repository at this point in the history
resolved #1059
  • Loading branch information
Gumball12 committed Dec 7, 2024
1 parent 6ba1250 commit fea473b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .vitepress/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"compilerOptions": {
"target": "ES2022",
"module": "ESNext",
"moduleResolution": "Bundler",
"moduleResolution": "bundler",
"strict": true,
"noImplicitOverride": true,
"noUnusedLocals": true,
Expand Down
2 changes: 1 addition & 1 deletion guide/performance.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ Vite의 내부 및 공식 플러그인은 가능한 최소한의 작업을 수
플러그인 개발자라면 위의 검사 횟수를 줄이기 위해서 필요할 때만 [`this.resolve`](https://rollupjs.org/plugin-development/#this-resolve)를 호출하는지 확인하세요.

::: tip TypeScript
TypeScript를 사용한다면, `tsconfig.json``compilerOptions``"moduleResolution": "Bundler"``"allowImportingTsExtensions": true`를 추가해 `.ts``.tsx` 확장자를 코드에서 바로 사용할 수 있습니다.
TypeScript를 사용한다면, `tsconfig.json``compilerOptions``"moduleResolution": "bundler"``"allowImportingTsExtensions": true`를 추가해 `.ts``.tsx` 확장자를 코드에서 바로 사용할 수 있습니다.
:::

## 배럴 파일 피하기 {#avoid-barrel-files}
Expand Down

0 comments on commit fea473b

Please sign in to comment.