Skip to content

Commit

Permalink
Add the src to all the tsconfig filed include property (#826)
Browse files Browse the repository at this point in the history
  • Loading branch information
yagoday authored Jul 23, 2024
1 parent 1380fe8 commit 6cc8e8e
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion apps/backend/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"extends": "../../tsconfig.base.json",
"files": [],
"include": [],
"include": ["./src"],
"references": [
{
"path": "./tsconfig.app.json"
Expand Down
2 changes: 1 addition & 1 deletion apps/tracker/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"extends": "../../tsconfig.base.json",
"files": [],
"include": [],
"include": ["./src"],
"references": [
{
"path": "./tsconfig.app.json"
Expand Down
2 changes: 1 addition & 1 deletion libs/config/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"module": "commonjs"
},
"files": [],
"include": [],
"include": ["./src"],
"references": [
{
"path": "./tsconfig.lib.json"
Expand Down
2 changes: 1 addition & 1 deletion libs/logger/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"module": "commonjs"
},
"files": [],
"include": [],
"include": ["./src"],
"references": [
{
"path": "./tsconfig.lib.json"
Expand Down
2 changes: 1 addition & 1 deletion libs/prisma/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"module": "commonjs"
},
"files": [],
"include": [],
"include": ["./src"],
"references": [
{
"path": "./tsconfig.lib.json"
Expand Down
2 changes: 1 addition & 1 deletion libs/queue-manager/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"module": "commonjs"
},
"files": [],
"include": [],
"include": ["./src"],
"references": [
{
"path": "./tsconfig.lib.json"
Expand Down
2 changes: 1 addition & 1 deletion libs/safe-url/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"module": "commonjs"
},
"files": [],
"include": [],
"include": ["./src"],
"references": [
{
"path": "./tsconfig.lib.json"
Expand Down
2 changes: 1 addition & 1 deletion libs/subscription-manager/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"module": "commonjs"
},
"files": [],
"include": [],
"include": ["./src"],
"references": [
{
"path": "./tsconfig.lib.json"
Expand Down
2 changes: 1 addition & 1 deletion libs/utils/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"module": "commonjs"
},
"files": [],
"include": [],
"include": ["./src"],
"references": [
{
"path": "./tsconfig.lib.json"
Expand Down

0 comments on commit 6cc8e8e

Please sign in to comment.