@schematics/angular 18.0.2 → 18.0.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/application/files/common-files/tsconfig.app.json.template +2 -1
- package/application/files/common-files/tsconfig.spec.json.template +2 -1
- package/component/files/__name@dasherize@if-flat__/__name@dasherize__.__type@dasherize__.spec.ts.template +1 -1
- package/e2e/files/tsconfig.json.template +2 -1
- package/library/files/tsconfig.lib.json.template +2 -1
- package/library/files/tsconfig.lib.prod.json.template +2 -1
- package/library/files/tsconfig.spec.json.template +2 -1
- package/package.json +3 -3
- package/server/files/root/tsconfig.server.json.template +2 -1
- package/utility/latest-versions.js +2 -2
- package/web-worker/files/worker-tsconfig/tsconfig.worker.json.template +1 -1
- package/workspace/files/tsconfig.json.template +2 -1
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
/* To learn more about
|
|
1
|
+
/* To learn more about Typescript configuration file: https://www.typescriptlang.org/docs/handbook/tsconfig-json.html. */
|
|
2
|
+
/* To learn more about Angular compiler options: https://angular.dev/reference/configs/angular-compiler-options. */
|
|
2
3
|
{
|
|
3
4
|
"extends": "<%= relativePathToWorkspaceRoot %>/tsconfig.json",
|
|
4
5
|
"compilerOptions": {
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
/* To learn more about
|
|
1
|
+
/* To learn more about Typescript configuration file: https://www.typescriptlang.org/docs/handbook/tsconfig-json.html. */
|
|
2
|
+
/* To learn more about Angular compiler options: https://angular.dev/reference/configs/angular-compiler-options. */
|
|
2
3
|
{
|
|
3
4
|
"extends": "<%= relativePathToWorkspaceRoot %>/tsconfig.json",
|
|
4
5
|
"compilerOptions": {
|
|
@@ -11,7 +11,7 @@ describe('<%= classify(name) %><%= classify(type) %>', () => {
|
|
|
11
11
|
<%= standalone ? 'imports' : 'declarations' %>: [<%= classify(name) %><%= classify(type) %>]
|
|
12
12
|
})
|
|
13
13
|
.compileComponents();
|
|
14
|
-
|
|
14
|
+
|
|
15
15
|
fixture = TestBed.createComponent(<%= classify(name) %><%= classify(type) %>);
|
|
16
16
|
component = fixture.componentInstance;
|
|
17
17
|
fixture.detectChanges();
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
/* To learn more about
|
|
1
|
+
/* To learn more about Typescript configuration file: https://www.typescriptlang.org/docs/handbook/tsconfig-json.html. */
|
|
2
|
+
/* To learn more about Angular compiler options: https://angular.dev/reference/configs/angular-compiler-options. */
|
|
2
3
|
{
|
|
3
4
|
"extends": "<%= relativePathToWorkspaceRoot %>/tsconfig.json",
|
|
4
5
|
"compilerOptions": {
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
/* To learn more about
|
|
1
|
+
/* To learn more about Typescript configuration file: https://www.typescriptlang.org/docs/handbook/tsconfig-json.html. */
|
|
2
|
+
/* To learn more about Angular compiler options: https://angular.dev/reference/configs/angular-compiler-options. */
|
|
2
3
|
{
|
|
3
4
|
"extends": "<%= relativePathToWorkspaceRoot %>/tsconfig.json",
|
|
4
5
|
"compilerOptions": {
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
/* To learn more about
|
|
1
|
+
/* To learn more about Typescript configuration file: https://www.typescriptlang.org/docs/handbook/tsconfig-json.html. */
|
|
2
|
+
/* To learn more about Angular compiler options: https://angular.dev/reference/configs/angular-compiler-options. */
|
|
2
3
|
{
|
|
3
4
|
"extends": "./tsconfig.lib.json",
|
|
4
5
|
"compilerOptions": {
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
/* To learn more about
|
|
1
|
+
/* To learn more about Typescript configuration file: https://www.typescriptlang.org/docs/handbook/tsconfig-json.html. */
|
|
2
|
+
/* To learn more about Angular compiler options: https://angular.dev/reference/configs/angular-compiler-options. */
|
|
2
3
|
{
|
|
3
4
|
"extends": "<%= relativePathToWorkspaceRoot %>/tsconfig.json",
|
|
4
5
|
"compilerOptions": {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@schematics/angular",
|
|
3
|
-
"version": "18.0.
|
|
3
|
+
"version": "18.0.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": "18.0.
|
|
26
|
-
"@angular-devkit/schematics": "18.0.
|
|
25
|
+
"@angular-devkit/core": "18.0.3",
|
|
26
|
+
"@angular-devkit/schematics": "18.0.3",
|
|
27
27
|
"jsonc-parser": "3.2.1"
|
|
28
28
|
},
|
|
29
29
|
"repository": {
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
/* To learn more about
|
|
1
|
+
/* To learn more about Typescript configuration file: https://www.typescriptlang.org/docs/handbook/tsconfig-json.html. */
|
|
2
|
+
/* To learn more about Angular compiler options: https://angular.dev/reference/configs/angular-compiler-options. */
|
|
2
3
|
{
|
|
3
4
|
"extends": "./<%= tsConfigExtends %>",
|
|
4
5
|
"compilerOptions": {
|
|
@@ -15,6 +15,6 @@ exports.latestVersions = {
|
|
|
15
15
|
...dependencies,
|
|
16
16
|
// As Angular CLI works with same minor versions of Angular Framework, a tilde match for the current
|
|
17
17
|
Angular: dependencies['@angular/core'],
|
|
18
|
-
DevkitBuildAngular: '^18.0.
|
|
19
|
-
AngularSSR: '^18.0.
|
|
18
|
+
DevkitBuildAngular: '^18.0.3',
|
|
19
|
+
AngularSSR: '^18.0.3',
|
|
20
20
|
};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/* To learn more about
|
|
1
|
+
/* To learn more about Typescript configuration file: https://www.typescriptlang.org/docs/handbook/tsconfig-json.html. */
|
|
2
2
|
{
|
|
3
3
|
"extends": "<%= relativePathToWorkspaceRoot %>/tsconfig.json",
|
|
4
4
|
"compilerOptions": {
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
/* To learn more about
|
|
1
|
+
/* To learn more about Typescript configuration file: https://www.typescriptlang.org/docs/handbook/tsconfig-json.html. */
|
|
2
|
+
/* To learn more about Angular compiler options: https://angular.dev/reference/configs/angular-compiler-options. */
|
|
2
3
|
{
|
|
3
4
|
"compileOnSave": false,
|
|
4
5
|
"compilerOptions": {
|