]> git.codecow.com Git - libnemo.git/commitdiff
Emit types to new ignored directory.
authorChris Duncan <chris@zoso.dev>
Thu, 17 Jul 2025 15:48:56 +0000 (08:48 -0700)
committerChris Duncan <chris@zoso.dev>
Thu, 17 Jul 2025 15:48:56 +0000 (08:48 -0700)
.gitignore
package.json
tsconfig.json

index 85b739bc5a8dbe533b3649b27bdc3eea13ac0327..4b89421673625bbd5538bbcf3ae9a486f3dd53ee 100644 (file)
@@ -68,6 +68,7 @@ env.*
 # esbuild\r
 build/\r
 dist/\r
+types/\r
 \r
 # IDE\r
 .vscode\r
index a972b4c2d5f03f72388a18f1562b90ac4b456db4..59d5519eda5027fe5af319178e0ccc7835fa13e3 100644 (file)
@@ -53,7 +53,6 @@
                "test:coverage:report": "npm run test:coverage -- --test-reporter=lcov --test-reporter-destination=coverage.info && genhtml coverage.info --output-directory test/coverage && rm coverage.info && xdg-open test/coverage/index.html"
        },
        "imports": {
-               "#dist/*": "./dist/*",
                "#src/*": "./src/*",
                "#types": "./src/types.d.ts",
                "#workers": "./src/lib/workers/index.js"
index 8cb60677b1cb420e9effc23024fa03aae02e8325..09e31911095566e2d58db7a019344a357e17c6e7 100644 (file)
@@ -5,7 +5,7 @@
                "moduleResolution": "Bundler",
                "declaration": true,
                "emitDeclarationOnly": true,
-               "declarationDir": "./dist/types",
+               "declarationDir": "./types",
                "alwaysStrict": true,
                "downlevelIteration": false,
                "esModuleInterop": true,