@schematics/angular 22.0.0-next.2 → 22.0.0-next.3
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/package.json +3 -3
- package/third_party/github.com/Microsoft/TypeScript/lib/typescript.d.ts +69 -59
- package/third_party/github.com/Microsoft/TypeScript/lib/typescript.js +2589 -1822
- package/utility/latest-versions/package.json +1 -1
- package/utility/latest-versions.js +3 -3
- package/workspace/files/tsconfig.json.template +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@schematics/angular",
|
|
3
|
-
"version": "22.0.0-next.
|
|
3
|
+
"version": "22.0.0-next.3",
|
|
4
4
|
"description": "Schematics specific to Angular",
|
|
5
5
|
"homepage": "https://github.com/angular/angular-cli",
|
|
6
6
|
"keywords": [
|
|
@@ -22,8 +22,8 @@
|
|
|
22
22
|
},
|
|
23
23
|
"schematics": "./collection.json",
|
|
24
24
|
"dependencies": {
|
|
25
|
-
"@angular-devkit/core": "22.0.0-next.
|
|
26
|
-
"@angular-devkit/schematics": "22.0.0-next.
|
|
25
|
+
"@angular-devkit/core": "22.0.0-next.3",
|
|
26
|
+
"@angular-devkit/schematics": "22.0.0-next.3",
|
|
27
27
|
"jsonc-parser": "3.3.1"
|
|
28
28
|
},
|
|
29
29
|
"repository": {
|
|
@@ -7,7 +7,7 @@ License at http://www.apache.org/licenses/LICENSE-2.0
|
|
|
7
7
|
THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
8
8
|
KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
|
|
9
9
|
WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
|
|
10
|
-
|
|
10
|
+
MERCHANTABILITY OR NON-INFRINGEMENT.
|
|
11
11
|
|
|
12
12
|
See the Apache Version 2.0 License for specific language governing permissions
|
|
13
13
|
and limitations under the License.
|
|
@@ -2530,6 +2530,7 @@ declare namespace ts {
|
|
|
2530
2530
|
Node = "node",
|
|
2531
2531
|
/** @deprecated Renamed to `Node10` */
|
|
2532
2532
|
NodeJs = "node",
|
|
2533
|
+
/** @deprecated */
|
|
2533
2534
|
Node10 = "node10",
|
|
2534
2535
|
Node16 = "node16",
|
|
2535
2536
|
NodeNext = "nodenext",
|
|
@@ -2542,6 +2543,7 @@ declare namespace ts {
|
|
|
2542
2543
|
export enum ScriptTarget {
|
|
2543
2544
|
/** @deprecated */
|
|
2544
2545
|
ES3 = "es3",
|
|
2546
|
+
/** @deprecated */
|
|
2545
2547
|
ES5 = "es5",
|
|
2546
2548
|
ES6 = "es6",
|
|
2547
2549
|
ES2015 = "es2015",
|
|
@@ -2554,9 +2556,11 @@ declare namespace ts {
|
|
|
2554
2556
|
ES2022 = "es2022",
|
|
2555
2557
|
ES2023 = "es2023",
|
|
2556
2558
|
ES2024 = "es2024",
|
|
2559
|
+
ES2025 = "es2025",
|
|
2557
2560
|
ESNext = "esnext",
|
|
2558
2561
|
JSON = "json",
|
|
2559
2562
|
Latest = "esnext",
|
|
2563
|
+
LatestStandard = "es2025",
|
|
2560
2564
|
}
|
|
2561
2565
|
}
|
|
2562
2566
|
namespace typingsInstaller {
|
|
@@ -3646,7 +3650,7 @@ declare namespace ts {
|
|
|
3646
3650
|
readDirectory(rootDir: string, extensions: readonly string[], excludes: readonly string[] | undefined, includes: readonly string[] | undefined, depth?: number): string[];
|
|
3647
3651
|
}
|
|
3648
3652
|
}
|
|
3649
|
-
const versionMajorMinor = "
|
|
3653
|
+
const versionMajorMinor = "6.0";
|
|
3650
3654
|
/** The version of the TypeScript compiler release */
|
|
3651
3655
|
const version: string;
|
|
3652
3656
|
/**
|
|
@@ -5907,7 +5911,6 @@ declare namespace ts {
|
|
|
5907
5911
|
*/
|
|
5908
5912
|
interface SourceFileLike {
|
|
5909
5913
|
readonly text: string;
|
|
5910
|
-
languageVariant?: LanguageVariant;
|
|
5911
5914
|
}
|
|
5912
5915
|
interface SourceFileLike {
|
|
5913
5916
|
getLineAndCharacterOfPosition(pos: number): LineAndCharacter;
|
|
@@ -5926,14 +5929,7 @@ declare namespace ts {
|
|
|
5926
5929
|
libReferenceDirectives: readonly FileReference[];
|
|
5927
5930
|
languageVariant: LanguageVariant;
|
|
5928
5931
|
isDeclarationFile: boolean;
|
|
5929
|
-
/**
|
|
5930
|
-
* lib.d.ts should have a reference comment like
|
|
5931
|
-
*
|
|
5932
|
-
* /// <reference no-default-lib="true"/>
|
|
5933
|
-
*
|
|
5934
|
-
* If any other file has this comment, it signals not to include lib.d.ts
|
|
5935
|
-
* because this containing file is intended to act as a default library.
|
|
5936
|
-
*/
|
|
5932
|
+
/** @deprecated Always false. Use a Program to determine if a file is a lib file. */
|
|
5937
5933
|
hasNoDefaultLib: boolean;
|
|
5938
5934
|
languageVersion: ScriptTarget;
|
|
5939
5935
|
/**
|
|
@@ -6598,53 +6594,53 @@ declare namespace ts {
|
|
|
6598
6594
|
enum TypeFlags {
|
|
6599
6595
|
Any = 1,
|
|
6600
6596
|
Unknown = 2,
|
|
6601
|
-
|
|
6602
|
-
|
|
6603
|
-
|
|
6604
|
-
|
|
6605
|
-
|
|
6606
|
-
|
|
6607
|
-
|
|
6608
|
-
|
|
6609
|
-
|
|
6610
|
-
|
|
6611
|
-
|
|
6612
|
-
|
|
6613
|
-
|
|
6614
|
-
|
|
6615
|
-
|
|
6616
|
-
|
|
6617
|
-
|
|
6618
|
-
|
|
6619
|
-
|
|
6620
|
-
|
|
6621
|
-
|
|
6622
|
-
|
|
6623
|
-
|
|
6624
|
-
|
|
6625
|
-
|
|
6626
|
-
|
|
6627
|
-
|
|
6628
|
-
Literal =
|
|
6629
|
-
Unit =
|
|
6630
|
-
Freshable =
|
|
6631
|
-
StringOrNumberLiteral =
|
|
6632
|
-
PossiblyFalsy =
|
|
6633
|
-
StringLike =
|
|
6634
|
-
NumberLike =
|
|
6635
|
-
BigIntLike =
|
|
6636
|
-
BooleanLike =
|
|
6637
|
-
EnumLike =
|
|
6638
|
-
ESSymbolLike =
|
|
6639
|
-
VoidLike =
|
|
6640
|
-
UnionOrIntersection =
|
|
6641
|
-
StructuredType =
|
|
6642
|
-
TypeVariable =
|
|
6643
|
-
InstantiableNonPrimitive =
|
|
6644
|
-
InstantiablePrimitive =
|
|
6645
|
-
Instantiable =
|
|
6646
|
-
StructuredOrInstantiable =
|
|
6647
|
-
Narrowable =
|
|
6597
|
+
Undefined = 4,
|
|
6598
|
+
Null = 8,
|
|
6599
|
+
Void = 16,
|
|
6600
|
+
String = 32,
|
|
6601
|
+
Number = 64,
|
|
6602
|
+
BigInt = 128,
|
|
6603
|
+
Boolean = 256,
|
|
6604
|
+
ESSymbol = 512,
|
|
6605
|
+
StringLiteral = 1024,
|
|
6606
|
+
NumberLiteral = 2048,
|
|
6607
|
+
BigIntLiteral = 4096,
|
|
6608
|
+
BooleanLiteral = 8192,
|
|
6609
|
+
UniqueESSymbol = 16384,
|
|
6610
|
+
EnumLiteral = 32768,
|
|
6611
|
+
Enum = 65536,
|
|
6612
|
+
NonPrimitive = 131072,
|
|
6613
|
+
Never = 262144,
|
|
6614
|
+
TypeParameter = 524288,
|
|
6615
|
+
Object = 1048576,
|
|
6616
|
+
Index = 2097152,
|
|
6617
|
+
TemplateLiteral = 4194304,
|
|
6618
|
+
StringMapping = 8388608,
|
|
6619
|
+
Substitution = 16777216,
|
|
6620
|
+
IndexedAccess = 33554432,
|
|
6621
|
+
Conditional = 67108864,
|
|
6622
|
+
Union = 134217728,
|
|
6623
|
+
Intersection = 268435456,
|
|
6624
|
+
Literal = 15360,
|
|
6625
|
+
Unit = 97292,
|
|
6626
|
+
Freshable = 80896,
|
|
6627
|
+
StringOrNumberLiteral = 3072,
|
|
6628
|
+
PossiblyFalsy = 15868,
|
|
6629
|
+
StringLike = 12583968,
|
|
6630
|
+
NumberLike = 67648,
|
|
6631
|
+
BigIntLike = 4224,
|
|
6632
|
+
BooleanLike = 8448,
|
|
6633
|
+
EnumLike = 98304,
|
|
6634
|
+
ESSymbolLike = 16896,
|
|
6635
|
+
VoidLike = 20,
|
|
6636
|
+
UnionOrIntersection = 402653184,
|
|
6637
|
+
StructuredType = 403701760,
|
|
6638
|
+
TypeVariable = 34078720,
|
|
6639
|
+
InstantiableNonPrimitive = 117964800,
|
|
6640
|
+
InstantiablePrimitive = 14680064,
|
|
6641
|
+
Instantiable = 132644864,
|
|
6642
|
+
StructuredOrInstantiable = 536346624,
|
|
6643
|
+
Narrowable = 536575971,
|
|
6648
6644
|
}
|
|
6649
6645
|
type DestructuringPattern = BindingPattern | ObjectLiteralExpression | ArrayLiteralExpression;
|
|
6650
6646
|
interface Type {
|
|
@@ -6951,6 +6947,7 @@ declare namespace ts {
|
|
|
6951
6947
|
Message = 3,
|
|
6952
6948
|
}
|
|
6953
6949
|
enum ModuleResolutionKind {
|
|
6950
|
+
/** @deprecated */
|
|
6954
6951
|
Classic = 1,
|
|
6955
6952
|
/**
|
|
6956
6953
|
* @deprecated
|
|
@@ -6958,6 +6955,9 @@ declare namespace ts {
|
|
|
6958
6955
|
* Use the new name or consider switching to a modern module resolution target.
|
|
6959
6956
|
*/
|
|
6960
6957
|
NodeJs = 2,
|
|
6958
|
+
/**
|
|
6959
|
+
* @deprecated
|
|
6960
|
+
*/
|
|
6961
6961
|
Node10 = 2,
|
|
6962
6962
|
Node16 = 3,
|
|
6963
6963
|
NodeNext = 99,
|
|
@@ -7020,6 +7020,7 @@ declare namespace ts {
|
|
|
7020
7020
|
allowUnreachableCode?: boolean;
|
|
7021
7021
|
allowUnusedLabels?: boolean;
|
|
7022
7022
|
alwaysStrict?: boolean;
|
|
7023
|
+
/** @deprecated */
|
|
7023
7024
|
baseUrl?: string;
|
|
7024
7025
|
/** @deprecated */
|
|
7025
7026
|
charset?: string;
|
|
@@ -7033,6 +7034,7 @@ declare namespace ts {
|
|
|
7033
7034
|
disableSourceOfProjectReferenceRedirect?: boolean;
|
|
7034
7035
|
disableSolutionSearching?: boolean;
|
|
7035
7036
|
disableReferencedProjectLoad?: boolean;
|
|
7037
|
+
/** @deprecated */
|
|
7036
7038
|
downlevelIteration?: boolean;
|
|
7037
7039
|
emitBOM?: boolean;
|
|
7038
7040
|
emitDecoratorMetadata?: boolean;
|
|
@@ -7150,10 +7152,14 @@ declare namespace ts {
|
|
|
7150
7152
|
[option: string]: CompilerOptionsValue | undefined;
|
|
7151
7153
|
}
|
|
7152
7154
|
enum ModuleKind {
|
|
7155
|
+
/** @deprecated */
|
|
7153
7156
|
None = 0,
|
|
7154
7157
|
CommonJS = 1,
|
|
7158
|
+
/** @deprecated */
|
|
7155
7159
|
AMD = 2,
|
|
7160
|
+
/** @deprecated */
|
|
7156
7161
|
UMD = 3,
|
|
7162
|
+
/** @deprecated */
|
|
7157
7163
|
System = 4,
|
|
7158
7164
|
ES2015 = 5,
|
|
7159
7165
|
ES2020 = 6,
|
|
@@ -7205,6 +7211,7 @@ declare namespace ts {
|
|
|
7205
7211
|
enum ScriptTarget {
|
|
7206
7212
|
/** @deprecated */
|
|
7207
7213
|
ES3 = 0,
|
|
7214
|
+
/** @deprecated */
|
|
7208
7215
|
ES5 = 1,
|
|
7209
7216
|
ES2015 = 2,
|
|
7210
7217
|
ES2016 = 3,
|
|
@@ -7216,9 +7223,11 @@ declare namespace ts {
|
|
|
7216
7223
|
ES2022 = 9,
|
|
7217
7224
|
ES2023 = 10,
|
|
7218
7225
|
ES2024 = 11,
|
|
7226
|
+
ES2025 = 12,
|
|
7219
7227
|
ESNext = 99,
|
|
7220
7228
|
JSON = 100,
|
|
7221
7229
|
Latest = 99,
|
|
7230
|
+
LatestStandard = 12,
|
|
7222
7231
|
}
|
|
7223
7232
|
enum LanguageVariant {
|
|
7224
7233
|
Standard = 0,
|
|
@@ -9320,7 +9329,7 @@ declare namespace ts {
|
|
|
9320
9329
|
* Given a set of options, returns the set of type directive names
|
|
9321
9330
|
* that should be included for this program automatically.
|
|
9322
9331
|
* This list could either come from the config file,
|
|
9323
|
-
* or from enumerating the types root + initial secondary types lookup location.
|
|
9332
|
+
* and/or from enumerating the types root + initial secondary types lookup location given "*" compat wildcard.
|
|
9324
9333
|
* More type directives might appear in the program later as a result of loading actual source files;
|
|
9325
9334
|
* this list is only the set of defaults that are implicitly included.
|
|
9326
9335
|
*/
|
|
@@ -10039,6 +10048,7 @@ declare namespace ts {
|
|
|
10039
10048
|
libReferenceDirectives: FileReference[];
|
|
10040
10049
|
importedFiles: FileReference[];
|
|
10041
10050
|
ambientExternalModules?: string[];
|
|
10051
|
+
/** @deprecated Always false. Use a Program to determine if a file is a lib file. */
|
|
10042
10052
|
isLibFile: boolean;
|
|
10043
10053
|
}
|
|
10044
10054
|
interface HostCancellationToken {
|