chore: bootstrap monorepo with shared package

This commit is contained in:
2026-05-20 20:31:02 +02:00
parent 011291cf39
commit 4d0a5aee66
6 changed files with 438 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
{
"name": "@flashcard/shared",
"version": "0.1.0",
"private": true,
"type": "module",
"main": "./src/index.ts",
"types": "./src/index.ts",
"exports": {
".": "./src/index.ts"
},
"scripts": {
"typecheck": "tsc --noEmit",
"build": "tsc --noEmit"
},
"dependencies": {
"zod": "^3.23.0"
},
"devDependencies": {
"typescript": "^5.5.0"
}
}

View File

@@ -0,0 +1 @@
export {};

View File

@@ -0,0 +1,8 @@
{
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"outDir": "dist",
"rootDir": "src"
},
"include": ["src/**/*"]
}