feat: sample backend package w/ express
This commit is contained in:
parent
100b326baf
commit
6dc71c32cc
9 changed files with 743 additions and 16 deletions
|
|
@ -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"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
export const SAMPLE = "Hello world from common once again!";
|
||||
export const SAMPLE = "Hello world from common once again! abcdefg";
|
||||
|
|
|
|||
|
|
@ -7,7 +7,6 @@
|
|||
"noUncheckedIndexedAccess": true,
|
||||
"sourceMap": true,
|
||||
"outDir": "dist",
|
||||
"declaration": true,
|
||||
},
|
||||
"include": [
|
||||
"src"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue