workspace setup

This commit is contained in:
Kevin Menn
2026-04-16 03:16:09 +02:00
parent 5202ff47db
commit a01812bd60
15 changed files with 14554 additions and 11 deletions
+12
View File
@@ -0,0 +1,12 @@
{
"name": "@manga-app/shared",
"private": true,
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsc -p tsconfig.json"
},
"devDependencies": {
"typescript": "^5.4.2"
}
}
+8
View File
@@ -0,0 +1,8 @@
{
"extends": "../tsconfig.base.json",
"compilerOptions": {
"composite": true,
"outDir": "./dist"
},
"include": ["src/**/*.ts"]
}