Skip to content

Commit

Permalink
build: fixing the linter issue
Browse files Browse the repository at this point in the history
  • Loading branch information
grisha87 committed Nov 21, 2023
1 parent 763ae91 commit bf46353
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
7 changes: 7 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@
"devDependencies": {
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"@tsconfig/node18": "^18.2.2",
"@types/jest": "^29.5.9",
"@types/lodash": "^4.14.202",
"@types/luxon": "^3.3.5",
Expand Down
5 changes: 2 additions & 3 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
// This is an alias to @tsconfig/node16: https://github.com/tsconfig/bases
"extends": "ts-node/node16/tsconfig.json",
"extends": "@tsconfig/node18/tsconfig.json",
// Most ts-node options can be specified here using their programmatic names.

"ts-node": {
Expand All @@ -19,8 +19,7 @@
"outDir": "dist/",
"rootDir": "src/",
"experimentalDecorators": true,
"resolveJsonModule": true,
"moduleResolution": "node16"
"resolveJsonModule": true
},
"exclude": ["node_modules", "dist", "data"]
}

0 comments on commit bf46353

Please sign in to comment.