Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/snaps-cli/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ the bundle, mangle variable names, and perform other optimizations.
#### `sourceMap`

- Type: `boolean | "inline"`
- Default: `true`
- Default: `false`

Whether to generate a source map. If `"inline"`, the source map will be
inlined in the bundle. Otherwise, it will be written to a separate file.
Expand Down
2 changes: 1 addition & 1 deletion packages/snaps-cli/src/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ export type SnapConfig = {
* be generated as separate files. If `'inline'`, source maps will be
* inlined in the generated JavaScript bundle.
*
* @default true
* @default false
*/
sourceMap?: boolean | 'inline';

Expand Down