Express, Vue

[vue] vue cli 프로젝트 설정

밍글링글링 2022. 3. 17.
728x90

아래 코드는 터미널에서 프로젝트 init시 보여지는 절차를 그대로 표시한 내용이다.

VUE 프로젝트 생성시 참고한다.

> manually select features 
[*]Choose Vue version
[*]Babel  // js 최신 문법을 폴리필 해줘 구형 브라우저 동작하게 해주는 컴파일러
[]TypeScript // 정적타입 언어
[]Progressive Web App (PWA) Support
[*]Router 
[*]Vuex // 상태 관리 라이브러리
[*]CSS Pre-processors // scss, less등 전처리 필요한 css 사용시 선택
[*]Linter / Formatter // ESLint, prettier등 사용시 선택
[*]Unit Testing // 단위테스도구 사용시 선택 (jest, Mocha + Chai)
[]E2E Testing

Choose a version of Vue.js that you want to start the project with:
(o) 3.x (Preview)

Use history mode for router?
Y

Pick a CSS pre-processor:
Sass/SCSS (with node-sass)

Pick a linter / formatter config:
ESLint with error prevention only  // airbnb 등 선택가능하지만 직접 룰 설정시 선택

Pick additional lint features:
(o) Lint on save
( ) Lint and fix on commit

Pick a unit testing solution
(o) jest
( ) Mocha + Chai

Where do you prefer placing config for Babel, ESLint, etc.?
> In dedicated config files   // 설정파일 별도 관리
  In package.json             // 패키지.json 파일에서 관리

Save this as a preset for future projects?
N

 

728x90

댓글