Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions framework/compiler/jsx-plugin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ const CONFIG_PATH = new URL("../src/config.ts", import.meta.url).pathname;
const CLOCK_PATH = new URL("../src/clock.ts", import.meta.url).pathname;
const DEVTOOLS_PATH = new URL("../src/devtools.ts", import.meta.url).pathname;
const EFFECTS_PATH = new URL("../src/effects.ts", import.meta.url).pathname;
const GESTURE_PATH = new URL("../src/gesture.ts", import.meta.url).pathname;
const HOST_PATH = new URL("../src/host.ts", import.meta.url).pathname;
const HOT_PATH = new URL("../src/hot.ts", import.meta.url).pathname;
const INPUT_API_PATH = new URL("../src/input-api.ts", import.meta.url).pathname;
Expand Down Expand Up @@ -153,6 +154,7 @@ export const FRAMEWORKS: Record<
animation: ANIMATION_PATH,
components: COMPONENTS_PATH,
config: CONFIG_PATH,
gesture: GESTURE_PATH,
input: INPUT_API_PATH,
launcher: LAUNCHER_PATH,
lifecycle: LIFECYCLE_PATH,
Expand Down
Loading