WebPack을 이용한 Typescript 번들링
1. 패키지 설치 typescript ts-loader 설치 yarn add typescript ts-loader@8.2.0 2. Webpack 옵션파일 수정 // webpack.config.js const path = require("path"); module.exports = { mode: "development", // mode: "production", entry: ["@babel/polyfill", "./src/index.ts"], output: { path: path.resolve(__dirname, "dist"), publicPath: "/dist/", filename: "bundle.js", }, module: { rules: [ { test: /\.js$/, include: path.jo..
더보기
Javascript 배열함수
1. map const arr = [1, 2, 3, 4, 5]; const map = arr.map(v => { return v; }); console.log(map); // [1, 2, 3, 4, 5] 2. reduce acc : 누산기 current : 현재값 idx : 현재 인덱스 src : 원본 배열 const alphabets = ["a", "b", "c", "a"]; const count = alphabets.reduce((acc, current) => { if (acc[current]) acc[current] += 1; else acc[current] = 1; return acc; }, {}); console.log(count); // { a: 2, b: 1, c: 1 } const arr ..
더보기