refactor: fix tsconfigs to support typescript 5.0

This commit is contained in:
George Needham
2023-06-11 10:51:23 -05:00
parent 4cbb9415f1
commit f1898f8492
2 changed files with 14 additions and 15 deletions

View File

@@ -1,16 +1,16 @@
{
"compilerOptions": {
"resolveJsonModule": true,
"target": "ESNext",
"module": "ESNext",
"outDir": "dist",
"rootDir": "src",
"strict": true,
"esModuleInterop": true,
"noImplicitAny": true,
"strictNullChecks": true,
"importsNotUsedAsValues": "error",
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true
}
"compilerOptions": {
"moduleResolution": "nodenext",
"resolveJsonModule": true,
"target": "ESNext",
"module": "ESNext",
"outDir": "dist",
"rootDir": "src",
"strict": true,
"esModuleInterop": true,
"noImplicitAny": true,
"strictNullChecks": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true
}
}

View File

@@ -9,7 +9,6 @@
"esModuleInterop": true,
"noImplicitAny": true,
"strictNullChecks": true,
"importsNotUsedAsValues": "error",
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true
}