From 7c0407899a2d64ece4247fbe3cb9a725f6f3118e Mon Sep 17 00:00:00 2001 From: Seb2869 <116349652+Seb2869@users.noreply.github.com> Date: Thu, 16 Oct 2025 11:25:23 +0800 Subject: [PATCH] Add files via upload --- tsconfig.json | 26 ++++++++++++-------------- 1 file changed, 12 insertions(+), 14 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index db2db9a..ab34d5a 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,21 +1,19 @@ { "compilerOptions": { - "target": "es2018", + "target": "ES2020", "module": "commonjs", - "moduleResolution": "node", - "importHelpers": true, - "declaration": true, - "sourceMap": true, - "strict": false, + "strict": true, "esModuleInterop": true, - "allowSyntheticDefaultImports": true, + "moduleResolution": "node", + "resolveJsonModule": true, "outDir": "dist", - "resolveJsonModule": true + "types": [ + "node" + ] }, "include": [ - "./typechain", - "./addresses", - "index.ts" - ], - "files": ["./hardhat.config.ts"] -} \ No newline at end of file + "scripts", + "test", + "hardhat.config.ts" + ] +}