diff --git a/test/projects/nx/packages/library1/tsconfig.json b/test/projects/nx/packages/library1/tsconfig.json index c23e61c8..fa2ef479 100644 --- a/test/projects/nx/packages/library1/tsconfig.json +++ b/test/projects/nx/packages/library1/tsconfig.json @@ -1,5 +1,5 @@ { - "extends": "../../tsconfig.base.json", + "extends": "@tsconfig/node18", "files": [], "include": [], "references": [ diff --git a/test/projects/nx/packages/library2/tsconfig.json b/test/projects/nx/packages/library2/tsconfig.json index c23e61c8..fa2ef479 100644 --- a/test/projects/nx/packages/library2/tsconfig.json +++ b/test/projects/nx/packages/library2/tsconfig.json @@ -1,5 +1,5 @@ { - "extends": "../../tsconfig.base.json", + "extends": "@tsconfig/node18", "files": [], "include": [], "references": [ diff --git a/test/projects/project-ref/a/tsconfig.json b/test/projects/project-ref/a/tsconfig.json index 7253501c..726e54cd 100755 --- a/test/projects/project-ref/a/tsconfig.json +++ b/test/projects/project-ref/a/tsconfig.json @@ -1,6 +1,6 @@ { "files": ["index.ts"], - "extends": "../tsconfig.base.json", + "extends": "@tsconfig/node18", "compilerOptions": { "outDir": "../lib/a", "declaration": true diff --git a/test/projects/project-ref/b/tsconfig.json b/test/projects/project-ref/b/tsconfig.json index 9a61c6d6..563c2790 100755 --- a/test/projects/project-ref/b/tsconfig.json +++ b/test/projects/project-ref/b/tsconfig.json @@ -1,6 +1,6 @@ { "files": ["index.ts", "local/index.ts"], - "extends": "../tsconfig.base.json", + "extends": "@tsconfig/node18", "compilerOptions": { "outDir": "../lib/b" }, diff --git a/tsconfig.base.json b/tsconfig.base.json deleted file mode 100755 index 8dcfdf37..00000000 --- a/tsconfig.base.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "extends": "@tsconfig/node18/tsconfig.json" -} diff --git a/tsconfig.json b/tsconfig.json index 4b7b3c41..f041ef40 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,5 +1,5 @@ { - "extends": "./tsconfig.base", + "extends": "@tsconfig/node18", "include": ["src"], "exclude": ["src/declarations"], "compilerOptions": {