From b452ed51ce81af45466b26eb2b226e5cc8c8d310 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=B8=89=E5=92=B2=E6=99=BA=E5=AD=90=20Kevin=20Deng?= Date: Thu, 5 Oct 2023 13:29:42 +0800 Subject: [PATCH] chore: fix lint --- tsconfig.json | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index ef365c0..fac60a8 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,16 +1,16 @@ { "compilerOptions": { "target": "esnext", - "module": "esnext", "lib": ["es2022"], - "strict": true, - "esModuleInterop": true, + "jsx": "preserve", + "module": "esnext", "moduleResolution": "bundler", - "skipLibCheck": true, - "noUnusedLocals": true, - "resolveJsonModule": true, "types": ["node"], - "jsx": "preserve" + "resolveJsonModule": true, + "esModuleInterop": true, + "strict": true, + "noUnusedLocals": true, + "skipLibCheck": true }, "include": ["src", "tests"], "exclude": ["tests/fixtures"]