Update tsconfig

This commit is contained in:
Nathan Bierema 2023-12-14 23:24:39 -05:00
parent d165cc7bd9
commit 4772257c6e

View File

@ -1,12 +1,14 @@
{
"compilerOptions": {
"target": "ES2020",
"moduleResolution": "Node",
"target": "es6",
"module": "node16",
"types": [],
"declaration": true,
"strict": true,
"allowSyntheticDefaultImports": true,
"outDir": "lib",
"isolatedModules": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"types": []
"strict": true,
"skipLibCheck": false
}
}