silgi 0.42.1 → 0.42.3

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.
@@ -2162,7 +2162,7 @@ async function writeTypesAndFiles(silgi) {
2162
2162
  contents: schemaContent.join("\n")
2163
2163
  });
2164
2164
  buildFiles.push({
2165
- path: join(typesDir, "silgi.d.ts"),
2165
+ path: join(typesDir, "silgi-config.d.ts"),
2166
2166
  contents: declarations.join("\n")
2167
2167
  });
2168
2168
  buildFiles.push({
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env node
2
2
  import { defineCommand, runMain } from 'citty';
3
3
 
4
- const version = "0.42.1";
4
+ const version = "0.42.3";
5
5
  const packageJson = {
6
6
  version: version};
7
7
 
@@ -30,7 +30,7 @@ async function silgiGenerateType(silgi) {
30
30
  );
31
31
  const tsconfigDir = dirname(tsConfigPath);
32
32
  const include = /* @__PURE__ */ new Set([
33
- relativeWithDot(tsconfigDir, join(silgi.options.build.typesDir, "silgi.d.ts")).replace(
33
+ relativeWithDot(tsconfigDir, join(silgi.options.build.typesDir, "silgi-config.d.ts")).replace(
34
34
  /^(?=[^.])/,
35
35
  "./"
36
36
  ),
@@ -67,6 +67,7 @@ async function silgiGenerateType(silgi) {
67
67
  allowSyntheticDefaultImports: true,
68
68
  skipLibCheck: true,
69
69
  allowImportingTsExtensions: true,
70
+ baseUrl: "./",
70
71
  /* Target options: */
71
72
  target: "ESNext",
72
73
  allowJs: true,
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "silgi",
3
3
  "type": "module",
4
- "version": "0.42.1",
4
+ "version": "0.42.3",
5
5
  "private": false,
6
6
  "sideEffects": false,
7
7
  "exports": {