chore: initialize monorepo tooling
This commit is contained in:
12
apps/admin/package.json
Normal file
12
apps/admin/package.json
Normal file
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"name": "@personal-brand/admin",
|
||||
"private": true,
|
||||
"type": "module",
|
||||
"scripts": {
|
||||
"build": "tsc -p tsconfig.json",
|
||||
"dev": "tsc -p tsconfig.json --watch",
|
||||
"lint": "eslint .",
|
||||
"typecheck": "tsc -p tsconfig.json --noEmit",
|
||||
"clean": "rimraf dist"
|
||||
}
|
||||
}
|
||||
1
apps/admin/src/main.ts
Normal file
1
apps/admin/src/main.ts
Normal file
@@ -0,0 +1 @@
|
||||
export const adminAppName = "personal-brand-admin";
|
||||
5
apps/admin/tsconfig.json
Normal file
5
apps/admin/tsconfig.json
Normal file
@@ -0,0 +1,5 @@
|
||||
{
|
||||
"extends": "../../tsconfig.base.json",
|
||||
"compilerOptions": { "outDir": "dist", "rootDir": "src", "lib": ["ES2022", "DOM"] },
|
||||
"include": ["src/**/*.ts"]
|
||||
}
|
||||
Reference in New Issue
Block a user