rename config
All checks were successful
Code quality checks / biome (push) Successful in 8s

This commit is contained in:
creations 2025-06-02 20:42:47 -04:00
parent 1b7948e074
commit 69f0c3d8e9
Signed by: creations
GPG key ID: 8F553AA4320FC711
4 changed files with 4 additions and 4 deletions

View file

@ -1,6 +1,6 @@
import { echo } from "@atums/echo";
import { verifyRequiredVariables } from "@config/environment";
import { verifyRequiredVariables } from "@config";
import { serverHandler } from "@server";
async function main(): Promise<void> {

View file

@ -1,6 +1,6 @@
import { resolve } from "node:path";
import { echo } from "@atums/echo";
import { environment } from "@config/environment";
import { environment } from "@config";
import {
type BunFile,
FileSystemRouter,

View file

@ -3,9 +3,9 @@
"baseUrl": "./",
"paths": {
"@*": ["src/*"],
"@config": ["config/index.ts"],
"@config/*": ["config/*"],
"@types/*": ["types/*"],
"@helpers/*": ["src/helpers/*"]
"@types/*": ["types/*"]
},
"typeRoots": ["./types", "./node_modules/@types"],
"lib": ["ESNext", "DOM"],