typescript 5.1.0-dev.20230412 → 5.1.0-dev.20230414
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/lib.es2022.intl.d.ts +9 -0
- package/lib/lib.es5.d.ts +27 -14
- package/lib/tsc.js +130 -151
- package/lib/tsserver.js +159 -169
- package/lib/tsserverlibrary.d.ts +2 -0
- package/lib/tsserverlibrary.js +158 -169
- package/lib/typescript.d.ts +1 -0
- package/lib/typescript.js +148 -158
- package/lib/typingsInstaller.js +6 -6
- package/package.json +2 -2
package/lib/tsserverlibrary.d.ts
CHANGED
|
@@ -2718,6 +2718,7 @@ declare namespace ts {
|
|
|
2718
2718
|
placeOpenBraceOnNewLineForControlBlocks?: boolean;
|
|
2719
2719
|
insertSpaceBeforeTypeAnnotation?: boolean;
|
|
2720
2720
|
semicolons?: SemicolonPreference;
|
|
2721
|
+
indentSwitchCase?: boolean;
|
|
2721
2722
|
}
|
|
2722
2723
|
interface UserPreferences {
|
|
2723
2724
|
readonly disableSuggestions?: boolean;
|
|
@@ -10524,6 +10525,7 @@ declare namespace ts {
|
|
|
10524
10525
|
readonly insertSpaceBeforeTypeAnnotation?: boolean;
|
|
10525
10526
|
readonly indentMultiLineObjectLiteralBeginningOnBlankLine?: boolean;
|
|
10526
10527
|
readonly semicolons?: SemicolonPreference;
|
|
10528
|
+
readonly indentSwitchCase?: boolean;
|
|
10527
10529
|
}
|
|
10528
10530
|
interface DefinitionInfo extends DocumentSpan {
|
|
10529
10531
|
kind: ScriptElementKind;
|