akjfal

4일차 본문

공부

4일차

akjfal 2022. 4. 7. 20:36

바벨에는 2가지 타입의 파일이 있다.

project-wide configureation (프로젝트 전체 구성)

- babel.config.json(.js, cjs, .mjs)

- configfile을 override할 수 있다.

File-relative configuration (파일 관련 구성)

- babelrc.json(.babelrc, .js, .cjs, .mjs)

- 일부 파일에 적용 할 수 있다.

하위 패키지와 루트 패키지간에 로드 설정에 주의해야한다.

하위 패키디를 같이 하기위해서는 babelrcRoots: [".", "packages/*"]등 옵션을 추가해줘야 한다.

.js사용시 바벨 구성 api가 노출되는데 바로 계산이 가능하지만 캐싱을 더 어렵게한다. 따라서 관련 기능 설정을 해야한다.

구성 파일에 대해서 봤으니 옵션에 대해서는 한글로 빠르게 일겅보았다.

근데... 초보인 나에겐 이걸 읽어보는 것이 더 좋을것 같다.

https://github.com/jamiebuilds/babel-handbook/blob/master/translations/ko/user-handbook.md#toc-introduction

 

GitHub - jamiebuilds/babel-handbook: A guided handbook on how to use Babel and how to create plugins for Babel.

:blue_book: A guided handbook on how to use Babel and how to create plugins for Babel. - GitHub - jamiebuilds/babel-handbook: A guided handbook on how to use Babel and how to create plugins for Babel.

github.com

이걸 빠르게 읽고, 내 프로젝트에 적용 시켜 봐야할 것 같다.

pollyfill의 정의 https://remysharp.com/2010/10/08/what-is-a-polyfill

 

What is a Polyfill?

A polyfill, or polyfiller, is a piece of code (or plugin) that provides the technology that you, the developer, expect the browser to provide natively. Flattening the API landscape if you will. READER DISCOUNTSave $50 on terminal.training I've published 38

remysharp.com

내일 할 일

https://github.com/jamiebuilds/babel-handbook/blob/master/translations/ko/plugin-handbook.md이거 읽기

https://github.com/jamiebuilds/babel-handbook/blob/master/translations/ko/user-handbook.md 이거 코드에 적용하기

'공부' 카테고리의 다른 글

7일차  (0) 2022.04.13
6일차  (0) 2022.04.11
5일차  (0) 2022.04.07
2일차  (0) 2022.02.24
1일차  (0) 2022.02.23
Comments