File tree Expand file tree Collapse file tree 1 file changed +16
-1
lines changed Expand file tree Collapse file tree 1 file changed +16
-1
lines changed Original file line number Diff line number Diff line change @@ -57,9 +57,24 @@ Webpack can be configured to output source maps by editing webpack.config.js.
57
57
}
58
58
};
59
59
60
+ SystemJS
61
+ ~~~~~~~~
62
+
63
+ SystemJS is the default module loader for Angular 2 projects. The `SystemJS build tool
64
+ <https://github.com/systemjs/builder> `_ can be used to bundle, transpile, and minify source code for
65
+ use in production environments, and can be configured to output source maps.
66
+
67
+ ::
68
+
69
+ builder.bundle('src/app.js', 'dist/app.min.js', {
70
+ minify: true,
71
+ sourceMaps: true,
72
+ sourceMapContents: true
73
+ });
74
+
60
75
.. admonition :: Inline Sources
61
76
62
- The instructions above inline your original, un-transformed source files into the generated source map file. Sentry
77
+ All of the example configurations above inline your original, un-transformed source files into the generated source map file. Sentry
63
78
requires both source map(s) **and ** your original source files in order to perform reverse transformations. If you
64
79
choose NOT to inline your source files, you must make those source files available to Sentry in *addition * to your
65
80
source maps (see below).
You can’t perform that action at this time.
0 commit comments