From d0e2764a381a04e90a62f8e2fc97c627ff583e1a Mon Sep 17 00:00:00 2001 From: Chris Duncan Date: Fri, 5 Sep 2025 21:52:42 -0700 Subject: [PATCH] Reorder config properties. --- tsconfig.json | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index ef20f30..116fc9c 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,21 +1,21 @@ { "compilerOptions": { - "target": "ESNext", - "module": "ESNext", - "moduleResolution": "Bundler", + "alwaysStrict": true, + "checkJs": true, "declaration": true, - "emitDeclarationOnly": true, "declarationDir": "./types", - "alwaysStrict": true, "downlevelIteration": false, + "emitDeclarationOnly": true, "esModuleInterop": true, "forceConsistentCasingInFileNames": true, "isolatedModules": true, + "module": "ESNext", + "moduleResolution": "Bundler", "noErrorTruncation": true, "noFallthroughCasesInSwitch": true, - "strict": true, "rootDir": "src", - "checkJs": true + "strict": true, + "target": "ESNext" }, "include": [ "src/**/*" -- 2.47.3