aboutsummaryrefslogtreecommitdiffstats
path: root/packages/workers/tsconfig.json
diff options
context:
space:
mode:
Diffstat (limited to 'packages/workers/tsconfig.json')
-rw-r--r--packages/workers/tsconfig.json7
1 files changed, 6 insertions, 1 deletions
diff --git a/packages/workers/tsconfig.json b/packages/workers/tsconfig.json
index 5ab467a9..cf49c407 100644
--- a/packages/workers/tsconfig.json
+++ b/packages/workers/tsconfig.json
@@ -2,5 +2,10 @@
"$schema": "https://json.schemastore.org/tsconfig",
"extends": "@tsconfig/node21/tsconfig.json",
"include": ["**/*.ts"],
- "exclude": ["node_modules"]
+ "exclude": ["node_modules"],
+ "compilerOptions": {
+ "module": "ESNext",
+ "moduleResolution": "node",
+ "esModuleInterop": true
+ }
}