Skip to content

Commit

Permalink
refact: remove tsconfig.base.json in favor of @tsconfig/node18
Browse files Browse the repository at this point in the history
  • Loading branch information
danielpza committed Aug 8, 2024
1 parent f984dc7 commit 13b77d7
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 8 deletions.
2 changes: 1 addition & 1 deletion test/projects/nx/packages/library1/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"extends": "../../tsconfig.base.json",
"extends": "@tsconfig/node18",
"files": [],
"include": [],
"references": [
Expand Down
2 changes: 1 addition & 1 deletion test/projects/nx/packages/library2/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"extends": "../../tsconfig.base.json",
"extends": "@tsconfig/node18",
"files": [],
"include": [],
"references": [
Expand Down
2 changes: 1 addition & 1 deletion test/projects/project-ref/a/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"files": ["index.ts"],
"extends": "../tsconfig.base.json",
"extends": "@tsconfig/node18",
"compilerOptions": {
"outDir": "../lib/a",
"declaration": true
Expand Down
2 changes: 1 addition & 1 deletion test/projects/project-ref/b/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"files": ["index.ts", "local/index.ts"],
"extends": "../tsconfig.base.json",
"extends": "@tsconfig/node18",
"compilerOptions": {
"outDir": "../lib/b"
},
Expand Down
3 changes: 0 additions & 3 deletions tsconfig.base.json

This file was deleted.

2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"extends": "./tsconfig.base",
"extends": "@tsconfig/node18",
"include": ["src"],
"exclude": ["src/declarations"],
"compilerOptions": {
Expand Down

0 comments on commit 13b77d7

Please sign in to comment.