Skip to content

Commit 3e403ea

Browse files
committed
🔧 Update tsconfig.json
1 parent 7828722 commit 3e403ea

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

tsconfig.json

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,25 @@
11
{
22
"compilerOptions": {
3-
"lib": [
4-
"es2017",
5-
"es2019"
6-
],
7-
"types": [
8-
"node",
9-
],
3+
"strict": true,
104
"module": "commonjs",
11-
"noImplicitAny": true,
5+
"moduleResolution": "node",
6+
"target": "es2019",
7+
"lib": ["es2019", "es2020", "es2022.error"],
128
"removeComments": true,
9+
"useUnknownInCatchVariables": false,
10+
"forceConsistentCasingInFileNames": true,
11+
"noImplicitAny": true,
12+
"noImplicitReturns": true,
13+
"noUnusedLocals": true,
1314
"strictNullChecks": true,
14-
"strict": true,
1515
"preserveConstEnums": true,
16+
"esModuleInterop": true,
1617
"resolveJsonModule": true,
18+
"incremental": true,
1719
"declaration": true,
18-
"outDir": "./dist/",
19-
"target": "es2019",
2020
"sourceMap": true,
21-
"esModuleInterop": true,
22-
"useUnknownInCatchVariables": false,
21+
"skipLibCheck": true,
22+
"outDir": "./dist/",
2323
},
2424
"include": [
2525
"credentials/**/*",

0 commit comments

Comments
 (0)