| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- {
- "presets": [
- [
- "@babel/preset-react",
- {
- "runtime": "automatic"
- }
- ],
- "@babel/preset-typescript",
- [
- "@babel/preset-env",
- {
- "targets": {
- "browsers": ["last 2 Chrome versions"],
- "node": "current"
- }
- }
- ]
- ],
- "plugins": [
- [
- "babel-plugin-import",
- {
- "libraryName": "antd",
- "style": false
- }
- ],
- "@babel/plugin-proposal-class-properties",
- "@babel/plugin-proposal-private-methods",
- "@babel/plugin-proposal-optional-chaining",
- "@babel/plugin-proposal-nullish-coalescing-operator"
- ],
- "env": {
- "development": {
- "plugins": ["babel-plugin-istanbul"]
- },
- "test": {
- "plugins": ["babel-plugin-istanbul"]
- }
- }
- }
|