feat: sample backend package w/ express

This commit is contained in:
Benjamin Singleton 2025-06-10 17:11:14 -05:00 committed by Sheldon Cooper
parent 63a9019b2a
commit 4ebce1448a
9 changed files with 743 additions and 16 deletions

View file

@ -5,17 +5,20 @@
"type": "module",
"exports": {
"./*": {
"types": "./dist/*.d.ts",
"types": "./src/*.ts",
"import": "./dist/*.js"
}
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "pnpm exec tsc",
"dev": "pnpm exec tsc --watch"
"build": "rm -rf ./dist & pnpm exec tsc",
"watch": "rm -rf ./dist & pnpm exec tsc --watch"
},
"keywords": [],
"author": "",
"license": "ISC",
"packageManager": "pnpm@10.11.0"
"packageManager": "pnpm@10.11.0",
"devDependencies": {
"typescript": "~5.8.3"
}
}

View file

@ -1 +1 @@
export const SAMPLE = "Hello world from common once again!";
export const SAMPLE = "Hello world from common once again! abcdefg";

View file

@ -7,7 +7,6 @@
"noUncheckedIndexedAccess": true,
"sourceMap": true,
"outDir": "dist",
"declaration": true,
},
"include": [
"src"