123456789101112131415161718192021222324252627282930313233343536373839404142 |
- {
- "env": {
- "development": {
- "application/javascript": {
- "presets": [
- [
- "env",
- {
- "targets": {
- "electron": "2.0"
- }
- }
- ],
- "react"
- ],
- "plugins": [
- "transform-async-to-generator"
- ],
- "sourceMaps": "inline"
- }
- },
- "production": {
- "application/javascript": {
- "presets": [
- [
- "env",
- {
- "targets": {
- "electron": "2.0"
- }
- }
- ],
- "react"
- ],
- "plugins": [
- "transform-async-to-generator"
- ],
- "sourceMaps": "none"
- }
- }
- }
- }
|