diff --git a/tsconfig.json b/tsconfig.json index c0f0998..a7d5048 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -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 + } }