]> git.codecow.com Git - libnemo.git/commitdiff
Reorder config properties.
authorChris Duncan <chris@zoso.dev>
Sat, 6 Sep 2025 04:52:42 +0000 (21:52 -0700)
committerChris Duncan <chris@zoso.dev>
Sat, 6 Sep 2025 04:52:42 +0000 (21:52 -0700)
tsconfig.json

index ef20f304e9917bdcb52ae5ccd48abd6d59812a73..116fc9cf8ea4ec6aedb2db5ab4c8a07129e8e13f 100644 (file)
@@ -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/**/*"