mirror of
https://github.com/FranP-code/create-better-t-stack.git
synced 2025-10-12 23:52:15 +00:00
18 lines
451 B
TypeScript
18 lines
451 B
TypeScript
import path from "node:path";
|
|
import { fileURLToPath } from "node:url";
|
|
import type { ProjectConfig } from "./types";
|
|
|
|
const __filename = fileURLToPath(import.meta.url);
|
|
const distPath = path.dirname(__filename);
|
|
export const PKG_ROOT = path.join(distPath, "../");
|
|
|
|
export const DEFAULT_CONFIG: ProjectConfig = {
|
|
projectName: "my-better-t-app",
|
|
database: "sqlite",
|
|
orm: "drizzle",
|
|
auth: true,
|
|
features: [],
|
|
git: true,
|
|
packageManager: "npm",
|
|
};
|