From 6b0907ce5ff088acf3e8abf885c5bf6e05b00ced Mon Sep 17 00:00:00 2001 From: chris Date: Sat, 15 Jun 2024 13:21:26 -0700 Subject: [PATCH] update tsconfig.json --- tests/tests-FAIL-swc/tsconfig.json | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/tests/tests-FAIL-swc/tsconfig.json b/tests/tests-FAIL-swc/tsconfig.json index 6f146fe..266f26f 100644 --- a/tests/tests-FAIL-swc/tsconfig.json +++ b/tests/tests-FAIL-swc/tsconfig.json @@ -1,11 +1,9 @@ { - "$schema": "https://json.schemastore.org/tsconfig", - "extends": "@tsconfig/node20/tsconfig.json", + "esm": true, "compilerOptions": { - "lib": ["es2023"], - "module": "NodeNext", - "moduleResolution": "NodeNext", - "target": "esnext", - "resolveJsonModule": true + "allowSyntheticDefaultImports": true, + "module": "ESNext", + "moduleResolution": "node", + "lib": ["ES2015"] } }