You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A warning message appears when you run npm start on 00_Boilerplate project:
`$ npm start
[email protected] start C:\Users\l.garcia\Documents\Repos\React\react-typescript-samples\hooks\00_BoilerPlate
webpack-dev-server --mode development --inline --hot --open
i 「wds」: Project is running at http://localhost:8080/
i 「wds」: webpack output is served from /
i 「wds」: Content not from webpack is served from ./dist
i 「atl」: Using [email protected] from typescript
i 「atl」: Using tsconfig.json from C:/Users/l.garcia/Documents/Repos/React/react-typescript-samples/hooks/00_BoilerPlate/tsconfig.json
WARNING: We noticed you're using the useBuiltIns option without declaring a core-js version. Currently, we assume version 2.x when no version is passed. Since this default version will likely change in future versions of Babel, we recommend explicitly setting the core-js version you are using via the corejs option.
You should also be sure that the version you pass to the corejs option matches the version specified in your package.json's dependencies section. If it doesn't, you need to run one of the following commands:
Describe the bug
A warning message appears when you run
npm start
on 00_Boilerplate project:`$ npm start
i 「wds」: Project is running at http://localhost:8080/
i 「wds」: webpack output is served from /
i 「wds」: Content not from webpack is served from ./dist
i 「atl」: Using [email protected] from typescript
i 「atl」: Using tsconfig.json from C:/Users/l.garcia/Documents/Repos/React/react-typescript-samples/hooks/00_BoilerPlate/tsconfig.json
WARNING: We noticed you're using the
useBuiltIns
option without declaring a core-js version. Currently, we assume version 2.x when no version is passed. Since this default version will likely change in future versions of Babel, we recommend explicitly setting the core-js version you are using via thecorejs
option.You should also be sure that the version you pass to the
corejs
option matches the version specified in yourpackage.json
'sdependencies
section. If it doesn't, you need to run one of the following commands:npm install --save core-js@2 npm install --save core-js@3
yarn add core-js@2 yarn add core-js@3
i 「wdm」: wait until bundle finished: /
i 「atl」: Checking started in a separate process...
i 「atl」: Time: 845ms
i 「wdm」: Compiled successfully.`
To Reproduce
Steps to reproduce the behaviour:
npm start
.Possible solution
According to core-js@3, babel and a look into the future, we have to specify 'core-js' version when we use the babel option 'useBuiltIns`.
The text was updated successfully, but these errors were encountered: