Skip to content

Commit 2dc99e3

Browse files
committed
tsconfig fix
1 parent 30a5002 commit 2dc99e3

File tree

3 files changed

+6
-15
lines changed

3 files changed

+6
-15
lines changed

package-lock.json

Lines changed: 0 additions & 13 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,6 @@
4242
"devDependencies": {
4343
"@commitlint/cli": "^13.2.0",
4444
"@commitlint/config-conventional": "^13.2.0",
45-
"@tsconfig/recommended": "^1.0.1",
4645
"@types/hapi__hapi": "^20.0.9",
4746
"@types/hapi__inert": "^5.2.3",
4847
"@types/hapi__joi": "^17.1.7",

tsconfig.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,17 @@
11
{
2-
"extends": "@tsconfig/recommended/tsconfig.json",
2+
33
"compilerOptions": {
44
"outDir": "./dist",
5+
"lib": ["es2021"],
6+
"module": "commonjs",
7+
"target": "es2021",
58
"strict": false,
69
"noImplicitAny": false,
710
"strictNullChecks": false,
811
"strictPropertyInitialization": false,
912
"alwaysStrict": false,
13+
"skipLibCheck": true,
14+
"esModuleInterop": true
1015
},
1116
"include": ["src/**/*"],
1217
"exclude": ["node_modules", "dist"]

0 commit comments

Comments
 (0)