Programming/JavaScript & TypeScript 68

[Vue, ESLint airbnb, Prettier] Vue 프로젝트에 eslint airbnb 확장 추가하기 + eslint-prettier 연동하기

1. Vue 프로젝트 ESLint 설정에 airbnb 확장 추가하기 npm v5 이상 npx install-peerdeps --dev eslint-config-airbnb https://www.npmjs.com/package/eslint-config-airbnb eslint-config-airbnb Airbnb's ESLint config, following our styleguide. Latest version: 19.0.4, last published: 2 months ago. Start using eslint-config-airbnb in your project by running `npm i eslint-config-airbnb`. There are 3988 other projects in the..

[Vue, eslint] vue-cli-service build 수행 시 Failed to load config "airbnb" to extend from. 에러 해결

에러 발생 환경 package.json "devDependencies": { "@vue/cli-plugin-babel": "^4.5.0", "@vue/cli-plugin-eslint": "^4.5.0", "@vue/cli-service": "^4.5.14", "babel-eslint": "^10.1.0", "eslint": "^6.7.2", "eslint-plugin-vue": "^6.2.2", "node-sass": "^6.0.1", "prettier": "^2.5.1", "sass-loader": "^10.2.0", "vue-template-compiler": "^2.6.14" }, .eslintrc { "extends": [ "airbnb", ... ], ... } vue.config.js modu..

[Vue] scss 파일에서 @ src alias 사용 시 정상 동작하지 않음, Syntax Error: ModuleNotFoundError: Module not found: Error: Can't resolve

- css파일도 마찬가지 1. jsconfig.json(또는 tsconfig.json)과 vue.config.js 확인 - 두 파일 모두 path가 잘 설정되어 있는지 확인 jsconfig.json ( 또는 tsconfig.json ) { "compilerOptions": { "module": "umd", "paths": { "@" : ["./src/*"], } }, "exclude": ["node_modules"], "removeComments": true } vue.config.js const path = require('path'); module.exports = { lintOnSave: false, configureWebpack: { resolve: { alias: { '@': path.join(..

[Angular] Material selection list 성능 이슈 (option 개수가 많을 때 페이지 로딩이 현저히 느려짐)

material selection list 의 option 개수를 최대 65000개 정도 그려야하는데, 그려지지 않았다. 그래서 해당 이슈를 찾아봄. 위 답변대로 방법 2개를 검토한 후 1번 방법을 먼저 수행해봄 https://www.npmjs.com/package/ng-mat-select-infinite-scroll ng-mat-select-infinite-scroll Adds missing infinite scroll functionality for the angular material select component www.npmjs.com 위 모듈을 설치해서 대체하는 것이었는데, 응~ 안돼~ 그래서 단순 테이블로 변경해서 65000개 tr을 만들어서 표현해봤는데도 생각보다 느림.. material ..

[NPM] better-sqlite3 설치 실패 npm ERR! better-sqlite3@7.1.2 install: `prebuild-install || npm run build-release`

https://www.npmjs.com/package/better-sqlite3/v/4.1.2 better-sqlite3 The fastest and simplest library for SQLite3 in Node.js. www.npmjs.com 이 모듈을 설치하려 했더니 다음과 같은 에러가 발생한다. npm ERR! better-sqlite3@7.1.2 install: `prebuild-install || npm run build-release` 그럼 우선 https://github.com/JoshuaWise/better-sqlite3/blob/master/docs/troubleshooting.md JoshuaWise/better-sqlite3 The fastest and simplest librar..

반응형