From b3424e08d02373f9534ee28d92843b31cd148ce7 Mon Sep 17 00:00:00 2001 From: Yue JIN Date: Tue, 26 Sep 2023 17:12:26 +0800 Subject: [PATCH] fix: add tsconfig override for cypress.config.ts --- tsconfig.json | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index 100cf6a..63fcf54 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -10,5 +10,17 @@ { "path": "./tsconfig.vitest.json" } - ] + ], + "ts-node": { + "compilerOptions": { + "module": "ESNext", + "lib": ["es2023"], + "target": "es2022", + "strict": true, + "esModuleInterop": true, + "skipLibCheck": true, + "moduleResolution": "Node10", + "forceConsistentCasingInFileNames": true + } + } }