LoginSignup
0
0

More than 3 years have passed since last update.

npx create-react-app my-app --typescriptのあと

Last updated at Posted at 2019-08-19

npx create-react-app my-app --typescript

# りんと
npm install --save tslint
# スタイル
npm install --save styled-components @types/styled-components

# air-bnbのりんとやりたい
npm install --save-dev tslint-config-airbnb
tslint.json
{
    "extends": "tslint-config-airbnb",
}

airbnbのりんとのめんどいやつはfalseにしたいので

tslint.json
{
    "extends": "tslint-config-airbnb",
    // 追加
    "rules": {
        "import-name": false,
        "variable-name": false,
    }
}
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0