feat: reconfigure for esm

This commit is contained in:
Naomi Carrigan 2024-06-25 18:21:37 -07:00
parent 75d34c2d94
commit 2a67164c1b
No known key found for this signature in database
GPG Key ID: 7019A402E94A9808

View File

@ -1,7 +1,8 @@
{
"compilerOptions": {
"target": "ES2022",
"module": "CommonJS",
"module": "ES2022",
"moduleResolution": "Node",
"allowUnreachableCode": false,
"allowUnusedLabels": false,
"exactOptionalPropertyTypes": true,
@ -14,8 +15,6 @@
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true
},
"exclude": ["../../../test"]
"forceConsistentCasingInFileNames": true
}
}