Skip to content

Commit 75d1ecd

Browse files
committed
refactor: remove deprecated compiler option
Removes usages of the `baseUrl` compiler option which is deprecated and will start throwing an error in TypeScript 6.
1 parent 88773ba commit 75d1ecd

File tree

8 files changed

+0
-8
lines changed

8 files changed

+0
-8
lines changed

modules/testing/builder/projects/hello-world-app/src/tsconfig.server.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
"extends": "./tsconfig.app.json",
33
"compilerOptions": {
44
"outDir": "../dist-server",
5-
"baseUrl": "./",
65
"types": ["@angular/localize", "node"]
76
},
87
"files": [

modules/testing/builder/projects/hello-world-app/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
"sourceMap": true,
76
"declaration": false,

packages/angular_devkit/build_angular/test/hello-world-lib/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
"sourceMap": true,
76
"declaration": false,

packages/angular_devkit/build_webpack/test/angular-app/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
"sourceMap": true,
76
"declaration": false,

packages/angular_devkit/build_webpack/test/basic-app/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
"sourceMap": true,
76
"declaration": false,

packages/angular_devkit/schematics_cli/blank/project-files/tsconfig.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
{
22
"compilerOptions": {
3-
"baseUrl": "tsconfig",
43
"lib": ["es2018", "dom"],
54
"declaration": true,
65
"module": "commonjs",

packages/angular_devkit/schematics_cli/schematic/files/tsconfig.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
{
22
"compilerOptions": {
3-
"baseUrl": "tsconfig",
43
"lib": ["es2018", "dom"],
54
"module": "commonjs",
65
"moduleResolution": "node",

tests/e2e/assets/ssr-project-webpack/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
"strict": true,
87
"noImplicitOverride": true,

0 commit comments

Comments
 (0)