1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89
|
This example demonstrates various types of source-maps.
# example.coffee
```coffeescript
_{{example.coffee}}_
```
# webpack.config.js
```javascript
_{{webpack.config.js}}_
```
# Generated source-maps
## source-map.js and source-map.js.map
```javascript
_{{dist/bundle-source-map.js}}_
```
```json
_{{dist/bundle-source-map.js.map}}_
```
## hidden-source-map.js and hidden-source-map.js.map
```javascript
_{{dist/bundle-hidden-source-map.js}}_
```
```json
_{{dist/bundle-hidden-source-map.js.map}}_
```
## inline-source-map.js
```javascript
_{{dist/bundle-inline-source-map.js}}_
```
## nosources-source-map.js.map
```json
_{{dist/bundle-nosources-source-map.js.map}}_
```
## eval-source-map.js
```javascript
_{{dist/bundle-eval-source-map.js}}_
```
## eval.js
```javascript
_{{dist/bundle-eval.js}}_
```
## eval-cheap-source-map.js
```javascript
_{{dist/bundle-eval-cheap-source-map.js}}_
```
## eval-cheap-module-source-map.js
```javascript
_{{dist/bundle-eval-cheap-module-source-map.js}}_
```
## cheap-module-source-map.js.map
```json
_{{dist/bundle-cheap-module-source-map.js.map}}_
```
## cheap-source-map.js.map
```json
_{{dist/bundle-cheap-source-map.js.map}}_
```
# webpack output
```
_{{stdout}}_
```
|