0.1.0 • Published 11 months ago

jtlab v0.1.0

Weekly downloads
-
License
MIT
Repository
github
Last release
11 months ago

jtlab

JS/TS Laboratory

JTLab ?

  • JS와 TS를 연구하는 개발자들의 모임
  • 연구 결과를 많은 개발자에게 공유하고 사용하게 하는데 목적이 있음

setup

  1. typescript & prettier & eslint
$> pnpm i -D typescript eslint @typescript-eslint/parser @typescript-eslint/eslint-plugin

$> pnpm info "eslint-config-airbnb-base@latest" peerDependencies

$> pnpm i -D eslint-config-airbnb-base eslint-plugin-import

$> pnpm i -D prettier eslint-config-prettier eslint-plugin-prettier
  1. esbuild

  2. Jest test framework

$> pnpm i -D jest @types/jest ts-jest
$> pnpm create jest@latest    # node
$> pnpm add --save-dev @babel/preset-typescript
$> pnpm add --save-dev @jest/globals
module.exports = {
  presets: [
    ['@babel/preset-env', {targets: {node: 'current'}}],
    '@babel/preset-typescript',
  ],
};
transform: {
    // '^.+\\.[tj]sx?$' to process ts,js,tsx,jsx with `ts-jest`
    // '^.+\\.m?[tj]sx?$' to process ts,js,tsx,jsx,mts,mjs,mtsx,mjsx with `ts-jest`
    '^.+\\.tsx?$': [
      'ts-jest',
      {
        useESM: true,
      },
    ],
  },
0.1.0

11 months ago

0.0.15

12 months ago

0.0.14

12 months ago

0.0.13

12 months ago

0.0.12

12 months ago

0.0.11

12 months ago

0.0.10

12 months ago

0.0.9

12 months ago

0.0.8

12 months ago

0.0.7

12 months ago

0.0.6

12 months ago

0.0.5

12 months ago

0.0.4

12 months ago

0.0.3

12 months ago

0.0.2

12 months ago

0.0.1

12 months ago