Skip to content

Commit e13f1af

Browse files
f(tsconfig.json): add rootDir to compilerOptions and update prettierignore
1 parent 072eb1c commit e13f1af

3 files changed

Lines changed: 5 additions & 1 deletion

File tree

.prettierignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,8 @@
33
coverage
44
docs
55
node_modules
6+
.pnpm-store
67
src/templates
78
CHANGELOG.md
9+
pnpm-lock.yaml
10+
pnpm-workspace.yaml

src/apiclient.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -336,7 +336,7 @@ export class APIClient {
336336
body: this.getPOSTData(mycmd),
337337
headers: {
338338
"User-Agent": this.getUserAgent(),
339-
"Content-Type": "application/x-www-form-urlencoded"
339+
"Content-Type": "application/x-www-form-urlencoded",
340340
},
341341
method: "POST",
342342
timeout: APIClient.socketTimeout,

tsconfig.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"extends": "./.github/linters/tsconfig.json",
33
"compilerOptions": {
4+
"rootDir": "./src",
45
"outDir": "./dist",
56
"types": ["node"]
67
},

0 commit comments

Comments
 (0)