Parcel + ESLint
키워드
- Bundler(번들러)
- Parcel
- Lint(린트)
- ESLint
Parcel
// package.json
"source" : "./index.html"Static 파일
빌드 +_ 정적 서버 실행
ESslint
Last updated
키워드
- Bundler(번들러)
- Parcel
- Lint(린트)
- ESLint
// package.json
"source" : "./index.html"Last updated
// .parcelrc
{
"extends": ["@parcel/config-default"],
"reporters": ["...", "parcel-reporter-static-files-copy"]
}npx parcel build
npx servor dist// vscode - setting.json
{
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
}
}