LoginSignup
1
0

More than 5 years have passed since last update.

(Part 3. Config .babelrc) Startup JavaScript Project with Webpack4, Vue2, Vue-Router, Vuex, Axios, ESLint, Babel, AirBnb

Last updated at Posted at 2018-07-18
.babelrc
{
  "presets": [
    "env"
  ],
  "plugins": [
    "transform-object-rest-spread" <-- Let you can use JS ... syntax.
    "transform-class-properties"   <-- Let you can use JS static syntax.
  ]
}

Part 6. Config index.html

Part 5. Config .stylelintrc.json

Part 4. Config .eslintrc.json

Part 3. Config .babelrc

Part 2. Config Webpack4

Part 1. Install package.json

Github : Vue2-Starter-Kit

1
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
1
0