fix(ignore): Update tsconfig for Node 18

This commit is contained in:
koenkk
2023-12-27 13:19:54 +01:00
parent 085b46c995
commit 084b048ff3
+4 -3
View File
@@ -1,9 +1,10 @@
{
"compilerOptions": {
"module": "commonjs",
"allowSyntheticDefaultImports": true,
"module": "ES2022",
"esModuleInterop": true,
"target": "es2018",
"lib": ["es2018"],
"target": "ES2022",
"lib": ["ES2022"],
"noImplicitAny": true,
"noImplicitThis": true,
"moduleResolution": "node",