refactor: 🚚 Add slash to typescript path shortcuts

This commit is contained in:
Jesse Wierzbinski 2024-05-28 14:59:49 -10:00
parent 5b658984a5
commit 0706541546
No known key found for this signature in database
176 changed files with 733 additions and 733 deletions

View file

@ -1,7 +1,7 @@
import { applyConfig } from "@api";
import { jsonResponse } from "@response";
import { applyConfig } from "@/api";
import { jsonResponse } from "@/response";
import type { Hono } from "hono";
import manifest from "~package.json";
import manifest from "~/package.json";
export const meta = applyConfig({
allowedMethods: ["GET"],

View file

@ -1,7 +1,7 @@
import { applyConfig } from "@api";
import { redirect } from "@response";
import { applyConfig } from "@/api";
import { redirect } from "@/response";
import type { Hono } from "hono";
import { config } from "~packages/config-manager";
import { config } from "~/packages/config-manager";
export const meta = applyConfig({
allowedMethods: ["GET"],