Skip to content

Commit 4b8686d

Browse files
authored
Merge pull request #344 from itowlson/ts-should-allow-functions
Fix TypeScript complaining about duplicate functions
2 parents e4b63d7 + fd75d51 commit 4b8686d

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

templates/http-ts/content/tsconfig.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,8 @@
1414
"strict": true,
1515
"noImplicitReturns": true,
1616
"moduleResolution": "node"
17-
}
17+
},
18+
"include": [
19+
"src/**/*"
20+
]
1821
}

templates/redis-ts/content/tsconfig.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,8 @@
1414
"strict": true,
1515
"noImplicitReturns": true,
1616
"moduleResolution": "node"
17-
}
17+
},
18+
"include": [
19+
"src/**/*"
20+
]
1821
}

0 commit comments

Comments
 (0)