nitropack-nightly 2.11.0-20250221-163722.f7e0e885 → 2.11.0-20250224-142059.8ccbde5f
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/core/index.mjs +3 -3
- package/dist/meta/index.d.mts +1 -1
- package/dist/meta/index.d.ts +1 -1
- package/dist/meta/index.mjs +1 -1
- package/package.json +1 -1
package/dist/core/index.mjs
CHANGED
|
@@ -1374,9 +1374,8 @@ declare module "nitropack/types" {
|
|
|
1374
1374
|
]
|
|
1375
1375
|
});
|
|
1376
1376
|
for (const alias in tsConfig.compilerOptions.paths) {
|
|
1377
|
-
const paths =
|
|
1378
|
-
|
|
1379
|
-
paths.map(async (path) => {
|
|
1377
|
+
const paths = await Promise.all(
|
|
1378
|
+
tsConfig.compilerOptions.paths[alias].map(async (path) => {
|
|
1380
1379
|
if (!isAbsolute(path)) {
|
|
1381
1380
|
return path;
|
|
1382
1381
|
}
|
|
@@ -1390,6 +1389,7 @@ declare module "nitropack/types" {
|
|
|
1390
1389
|
);
|
|
1391
1390
|
})
|
|
1392
1391
|
);
|
|
1392
|
+
tsConfig.compilerOptions.paths[alias] = [...new Set(paths)];
|
|
1393
1393
|
}
|
|
1394
1394
|
tsConfig.include = [
|
|
1395
1395
|
...new Set(
|
package/dist/meta/index.d.mts
CHANGED
package/dist/meta/index.d.ts
CHANGED
package/dist/meta/index.mjs
CHANGED
package/package.json
CHANGED