@frockbot/applet-sdk 0.3.46 → 0.3.47
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/cli.mjs +0 -1
- package/package.json +2 -2
- package/src/cli/check.ts +2 -1
package/dist/cli.mjs
CHANGED
|
@@ -758,7 +758,6 @@ async function typeCheckApplet(directory) {
|
|
|
758
758
|
}
|
|
759
759
|
const program = ts.createProgram([...files, SDK_WORKERS_TYPES], {
|
|
760
760
|
...COMPILER_OPTIONS,
|
|
761
|
-
baseUrl: root,
|
|
762
761
|
paths: typeCheckerPaths()
|
|
763
762
|
});
|
|
764
763
|
return ts.getPreEmitDiagnostics(program).filter(
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@frockbot/applet-sdk",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.47",
|
|
4
4
|
"private": false,
|
|
5
5
|
"type": "module",
|
|
6
6
|
"description": "Authoring SDK for FrockBot Applets: schema-first Durable Object server, TanStack DB client, component kit, linter, and the `applet` CLI.",
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
"miniflare": "5.20260828.0-alpha",
|
|
40
40
|
"react": "19.2.8",
|
|
41
41
|
"react-dom": "19.2.8",
|
|
42
|
-
"typescript": "
|
|
42
|
+
"typescript": "npm:typescript-native-bridge@6.0.3-bridge.16.tsgo.7.0.2",
|
|
43
43
|
"typescript-eslint": "8.69.0"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
package/src/cli/check.ts
CHANGED
|
@@ -64,9 +64,10 @@ export async function typeCheckApplet(
|
|
|
64
64
|
},
|
|
65
65
|
];
|
|
66
66
|
}
|
|
67
|
+
// No `baseUrl`: TypeScript 7 rejects it, and it was never needed — every
|
|
68
|
+
// mapping `typeCheckerPaths()` returns is already an absolute path.
|
|
67
69
|
const program = ts.createProgram([...files, SDK_WORKERS_TYPES], {
|
|
68
70
|
...COMPILER_OPTIONS,
|
|
69
|
-
baseUrl: root,
|
|
70
71
|
paths: typeCheckerPaths(),
|
|
71
72
|
});
|
|
72
73
|
return ts
|