zoukankan      html  css  js  c++  java
  • react typescript jest config (一)

    1. initialize project

    create a folder project
    Now we’ll turn this folder into an npm package.

    npm init -y
    

    This creates a package.json file with default values.

    2. Install react typescript dependencies

    First ensure Webpack is installed.

    npm i webpack webpack-cli webpack-merge html-webpack-plugin webpack-dev-server -D
    

    Webpack is a tool that will bundle your code and optionally all of its dependencies into a single .js file.

    Let’s now add React and React-DOM, along with their declaration files, as dependencies to your package.json file:

    npm i react react-dom 
    npm i @types/react @types/react-dom -D
    

    That @types/ prefix means that we also want to get the declaration files for React and React-DOM. Usually when you import a path like "react", it will look inside of the react package itself; however, not all packages include declaration files, so TypeScript also looks in the @types/react package as well. You’ll see that we won’t even have to think about this later on.

    Next, we’ll add development-time dependencies on the ts-loader and source-map-loader.

    npm i typescript ts-loader source-map-loader -D
    or
    npm i awesome-typescript-loader source-map-loader -D
    

    Both of these dependencies will let TypeScript and webpack play well together. ts-loader helps Webpack compile your TypeScript code using the TypeScript’s standard configuration file named tsconfig.json. source-map-loader uses any sourcemap outputs from TypeScript to inform webpack when generating its own sourcemaps. This will allow you to debug your final output file as if you were debugging your original TypeScript source code.

    Please note that ts-loader is not the only loader for typescript. You could instead use awesome-typescript-loader
    Read about the differences between them:
    https://github.com/s-panferov/awesome-typescript-loader#differences-between-ts-loader
    Notice that we installed TypeScript as a development dependency. We could also have linked TypeScript to a global copy with npm link typescript, but this is a less common scenario.

    3. Install jest enzyme dependencies

    1、install jest dependencies

    npm i jest @types/jest ts-jest -D
    

    2、 install enzyme dependencies

    npm i enzyme enzyme-adapter-react-16 jest-enzyme  enzyme-to-json -D
    npm i @types/enzyme @types/enzyme-adapter-react-16 -D
    

    4. install another compiler for typescript use babel dependencies

    install babel loader

    npm i @babel/core @babel/preset-env @babel/preset-react @babel/preset-typescript -D
    
    npm i babel-loader babel-plugin-import -D
    

    config babel

    module.exports={
        presets: [
            "env",
            "react",
            "typascript"
        ],
        plugins: [
            ["lodash"],
            ["import", {libraryName: "antd", style: true}]
        ]
    }
    

    use babel loader instaed of ts-loader

  • 相关阅读:
    测试次数--蓝桥杯
    承压计算--蓝桥杯
    天梯赛--连续因子
    等差素数数列-蓝桥杯
    hdu-1237-简单计算器
    hdu-1022-栈
    [BZOJ3172]:[Tjoi2013]单词(AC自动机)
    [BZOJ4327]:[JZOI2012]玄武密码(AC自动机)
    [HDU5360]:Gorgeous Sequence(小清新线段树)
    [BZOJ3307]:雨天的尾巴(LCA+树上差分+权值线段树)
  • 原文地址:https://www.cnblogs.com/Nyan-Workflow-FC/p/12089703.html
Copyright © 2011-2022 走看看