From: Chris Duncan Date: Sat, 6 Sep 2025 04:52:42 +0000 (-0700) Subject: Reorder config properties. X-Git-Tag: v0.10.5~24^2~12 X-Git-Url: https://git.codecow.com/?a=commitdiff_plain;h=d0e2764a381a04e90a62f8e2fc97c627ff583e1a;p=libnemo.git Reorder config properties. --- 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/**/*"