Skip to content

Commit fe74c24

Browse files
committed
Linting
1 parent c8cc614 commit fe74c24

File tree

4 files changed

+15
-9
lines changed

4 files changed

+15
-9
lines changed

declarations/plugins/SourceMapDevToolPlugin.d.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,10 @@ export interface SourceMapDevToolPluginOptions {
2828
* Indicates whether column mappings should be used (defaults to true).
2929
*/
3030
columns?: boolean;
31+
/**
32+
* Emit debug IDs into source and SourceMap.
33+
*/
34+
debugIds?: boolean;
3135
/**
3236
* Exclude modules that match the given value from source map generation.
3337
*/
@@ -76,8 +80,4 @@ export interface SourceMapDevToolPluginOptions {
7680
* Include source maps for modules based on their extension (defaults to .js and .css).
7781
*/
7882
test?: Rules;
79-
/**
80-
* Include debugIds in sources and sourcemaps.
81-
*/
82-
debugIds?: boolean;
8383
}

schemas/plugins/SourceMapDevToolPlugin.check.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

schemas/plugins/SourceMapDevToolPlugin.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,10 @@
5858
"description": "Indicates whether column mappings should be used (defaults to true).",
5959
"type": "boolean"
6060
},
61+
"debugIds": {
62+
"description": "Emit debug IDs into source and SourceMap.",
63+
"type": "boolean"
64+
},
6165
"exclude": {
6266
"description": "Exclude modules that match the given value from source map generation.",
6367
"oneOf": [
@@ -140,10 +144,6 @@
140144
"description": "Provide a custom value for the 'sourceRoot' property in the SourceMap.",
141145
"type": "string"
142146
},
143-
"debugIds": {
144-
"description": "Emit debug IDs into source and SourceMap.",
145-
"type": "boolean"
146-
},
147147
"test": {
148148
"$ref": "#/definitions/rules"
149149
}

types.d.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14215,6 +14215,7 @@ declare interface SourceMap {
1421514215
sourceRoot?: string;
1421614216
sourcesContent?: string[];
1421714217
names?: string[];
14218+
debugId?: string;
1421814219
}
1421914220
declare class SourceMapDevToolPlugin {
1422014221
constructor(options?: SourceMapDevToolPluginOptions);
@@ -14248,6 +14249,11 @@ declare interface SourceMapDevToolPluginOptions {
1424814249
*/
1424914250
columns?: boolean;
1425014251

14252+
/**
14253+
* Emit debug IDs into source and SourceMap.
14254+
*/
14255+
debugIds?: boolean;
14256+
1425114257
/**
1425214258
* Exclude modules that match the given value from source map generation.
1425314259
*/

0 commit comments

Comments
 (0)