Skip to content

Commit bfd792f

Browse files
authored
build: remove deprecated compiler option (angular#32692)
Removes the `baseUrl` option from the various configs since it's deprecated and will trigger an error in TypeScript 6.
1 parent b52257e commit bfd792f

File tree

21 files changed

+0
-24
lines changed

21 files changed

+0
-24
lines changed

docs/src/assets/stackblitz/tsconfig.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
{
33
"compileOnSave": false,
44
"compilerOptions": {
5-
"baseUrl": "./",
65
"outDir": "./dist/out-tsc",
76
"sourceMap": true,
87
"declaration": false,

docs/tsconfig.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
{
22
"compileOnSave": false,
33
"compilerOptions": {
4-
"baseUrl": "./",
54
"outDir": "../dist/out-tsc",
65
"forceConsistentCasingInFileNames": true,
76
"allowSyntheticDefaultImports": true,

integration/ng-add-standalone/tsconfig.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
{
22
"compileOnSave": false,
33
"compilerOptions": {
4-
"baseUrl": "./",
54
"outDir": "./dist/out-tsc",
65
"forceConsistentCasingInFileNames": true,
76
"strict": true,

integration/ng-add/tsconfig.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
{
22
"compileOnSave": false,
33
"compilerOptions": {
4-
"baseUrl": "./",
54
"outDir": "./dist/out-tsc",
65
"forceConsistentCasingInFileNames": true,
76
"strict": true,

integration/yarn-pnp-compat/tsconfig.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
{
33
"compileOnSave": false,
44
"compilerOptions": {
5-
"baseUrl": "./",
65
"outDir": "./dist/out-tsc",
76
"forceConsistentCasingInFileNames": true,
87
"strict": true,

src/aria/tsconfig.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
"extends": "../../tsconfig.json",
44
"compilerOptions": {
55
"rootDir": "..",
6-
"baseUrl": ".",
76
"paths": {
87
"@angular/cdk/*": ["../cdk/*"],
98
"@angular/aria/*": ["../aria/*"]

src/bazel-tsconfig-build.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
// used by Bazel to build the sources for an entry-point.
44
{
55
"compilerOptions": {
6-
"baseUrl": ".",
76
"declaration": true,
87
"stripInternal": false,
98
"experimentalDecorators": true,

src/cdk-experimental/tsconfig.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
"extends": "../../tsconfig.json",
44
"compilerOptions": {
55
"rootDir": "..",
6-
"baseUrl": ".",
76
"paths": {
87
"@angular/cdk/*": ["../cdk/*"],
98
"@angular/cdk-experimental/*": ["../cdk-experimental/*"]

src/cdk/tsconfig.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
"extends": "../../tsconfig.json",
44
"compilerOptions": {
55
"rootDir": "..",
6-
"baseUrl": ".",
76
"paths": {
87
"@angular/cdk/*": ["./*"]
98
}

src/components-examples/tsconfig.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
"extends": "../../tsconfig.json",
44
"compilerOptions": {
55
"rootDir": "..",
6-
"baseUrl": ".",
76
"paths": {
87
"@angular/aria/*": ["../aria/*"],
98
"@angular/cdk/*": ["../cdk/*"],

0 commit comments

Comments
 (0)