I have the following configuration for browserslist in package.json :
"browserslist": {
"production": [
"chrome > 38"
],
"development": "last 1 version"
},
However, incompatible syntax still exists in the compilations:

I imported 'core-js' (3.30.2) into the entry file, and tried to override the configuration of cra through `craco' and rerun the build:
babel: {
presets: [
[
"@babel/preset-env",
{
targets: {
chrome: "38",
},
useBuiltIns: "usage",
forceAllTransforms: true,
},
],
],
plugins: [
[
"@babel/plugin-transform-unicode-property-regex",
{ useUnicodeFlag: false },
],
],
},
But the same mistakes still appear, why is this?what should I do?
I have the following configuration for
browserslistinpackage.json:However, incompatible syntax still exists in the compilations:

I imported 'core-js' (3.30.2) into the entry file, and tried to override the configuration of cra through `craco' and rerun the build:
But the same mistakes still appear, why is this?what should I do?