From 194eb8226315479afe4636e4911d4163d8fa64da Mon Sep 17 00:00:00 2001 From: Daniel Perez Alvarez Date: Thu, 8 Aug 2024 01:37:31 -0400 Subject: [PATCH] refact: remove tsconfig.base.json in favor of @tsconfig/node18 --- test/projects/nx/packages/library1/tsconfig.json | 2 +- test/projects/nx/packages/library2/tsconfig.json | 2 +- test/projects/project-ref/a/tsconfig.json | 2 +- test/projects/project-ref/b/tsconfig.json | 2 +- tsconfig.base.json | 3 --- tsconfig.json | 2 +- 6 files changed, 5 insertions(+), 8 deletions(-) delete mode 100755 tsconfig.base.json diff --git a/test/projects/nx/packages/library1/tsconfig.json b/test/projects/nx/packages/library1/tsconfig.json index c23e61c..fa2ef47 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 c23e61c..fa2ef47 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 7253501..726e54c 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 9a61c6d..563c279 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 8dcfdf3..0000000 --- a/tsconfig.base.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "extends": "@tsconfig/node18/tsconfig.json" -} diff --git a/tsconfig.json b/tsconfig.json index 4b7b3c4..f041ef4 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,5 +1,5 @@ { - "extends": "./tsconfig.base", + "extends": "@tsconfig/node18", "include": ["src"], "exclude": ["src/declarations"], "compilerOptions": {