This commit is contained in:
2026-03-02 10:44:30 +01:00
parent e293205e66
commit 634be9b01d
52 changed files with 3033 additions and 3 deletions
+3
View File
@@ -0,0 +1,3 @@
export declare const AppData: {
readonly ConfigFileName: "bun-sqlite.config.ts";
};
+3
View File
@@ -0,0 +1,3 @@
export const AppData = {
ConfigFileName: "bun-sqlite.config.ts",
};
+3
View File
@@ -0,0 +1,3 @@
export default function grabDirNames(): {
ROOT_DIR: string;
};
+7
View File
@@ -0,0 +1,7 @@
import path from "path";
export default function grabDirNames() {
const ROOT_DIR = process.cwd();
return {
ROOT_DIR,
};
}