|
1 | 1 | {
|
2 |
| -"presets": [ |
3 |
| - ["next/babel"] |
4 |
| - ], |
| 2 | +"presets": [["next/babel"]], |
5 | 3 | "env": {
|
6 |
| -"development": { |
7 |
| -"plugins": ["inline-dotenv"] |
| 4 | +"development": { |
| 5 | +"plugins": ["inline-dotenv"] |
8 | 6 | },
|
9 | 7 | "production": {
|
10 | 8 | "presets": [
|
11 |
| - ["next/babel", { |
12 |
| -"preset-env": { |
13 |
| -"targets": { |
14 |
| -"ie":"11" |
15 |
| - }, |
16 |
| -"debug":false |
| 9 | + [ |
| 10 | +"next/babel", |
| 11 | + { |
| 12 | +"preset-env": { |
| 13 | +"targets": { |
| 14 | +"ie":"11" |
| 15 | + }, |
| 16 | +"debug":false |
| 17 | + } |
17 | 18 | }
|
18 |
| -}] |
| 19 | + ] |
19 | 20 | ]
|
20 | 21 | },
|
21 | 22 | "test": {
|
|
47 | 48 | }
|
48 | 49 | ],
|
49 | 50 | "ramda",
|
50 |
| - ["module-resolver", { |
51 |
| -"root": ["./"], |
52 |
| -"alias": { |
53 |
| -"@containers":"./containers", |
54 |
| -"@components":"./components", |
55 |
| -"@hooks":"./components/Hooks", |
56 |
| -"@config":"./config", |
57 |
| -"@stores":"./stores", |
58 |
| -"@model":"./stores/SharedModel", |
59 |
| -"@utils":"./utils", |
60 |
| -"@schemas":"./containers/schemas", |
61 |
| -"@Img":"./components/Img", |
62 |
| -"@SvgIcons":"./components/SvgIcons" |
| 51 | + [ |
| 52 | +"module-resolver", |
| 53 | + { |
| 54 | +"root": ["./"], |
| 55 | +"alias": { |
| 56 | +"@containers":"./containers", |
| 57 | +"@components":"./components", |
| 58 | +"@services":"./services", |
| 59 | +"@hooks":"./components/Hooks", |
| 60 | +"@config":"./config", |
| 61 | +"@stores":"./stores", |
| 62 | +"@model":"./stores/SharedModel", |
| 63 | +"@utils":"./utils", |
| 64 | +"@schemas":"./containers/schemas", |
| 65 | +"@Img":"./components/Img", |
| 66 | +"@SvgIcons":"./components/SvgIcons" |
| 67 | + } |
63 | 68 | }
|
64 |
| -}] |
| 69 | + ] |
65 | 70 | ]
|
66 | 71 | }
|