Skip to content

Commit

Permalink
fix(build): extend tsconfig/recommended
Browse files Browse the repository at this point in the history
  • Loading branch information
bostrom committed Sep 30, 2024
1 parent fe63880 commit 2cb0081
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 14 deletions.
16 changes: 8 additions & 8 deletions package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@jest/globals": "^29.7.0",
"@tsconfig/node-lts": "^20.1.3",
"@tsconfig/recommended": "^1.0.7",
"@types/jest": "^29.5.13",
"@typescript-eslint/eslint-plugin": "^8.6.0",
"@typescript-eslint/parser": "^8.6.0",
Expand Down
8 changes: 3 additions & 5 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,12 @@
{
"extends": "@tsconfig/node-lts/tsconfig.json",
"extends": "@tsconfig/recommended/tsconfig.json",
"compilerOptions": {
"allowJs": true,
"strict": true,
"declaration": true,
"noImplicitAny": true,
"outDir": "dist",
"preserveConstEnums": true,
"removeComments": true,
"sourceMap": true,
"strict": true
"sourceMap": true
},
"include": ["src/**/*", "types/**/*"]
}

0 comments on commit 2cb0081

Please sign in to comment.