Initial commit
This commit is contained in:
commit
a4ea6406e6
7 changed files with 623 additions and 0 deletions
19
package.json
Normal file
19
package.json
Normal file
|
@ -0,0 +1,19 @@
|
|||
{
|
||||
"name": "typescript-base",
|
||||
"version": "1.0.0",
|
||||
"description": "Base TypeScript template to use",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
"test": "echo \"Error: no test specified\" && exit 1",
|
||||
"build": "tsc",
|
||||
"start": "cd out && node --enable-source-maps index.js",
|
||||
"dev": "nodemon --watch src --ext ts,js,mjs,json --exec \"tsc && cd out && node --enable-source-maps index.js\""
|
||||
},
|
||||
"keywords": [],
|
||||
"author": "greysoh",
|
||||
"license": "BSD-3-Clause",
|
||||
"devDependencies": {
|
||||
"nodemon": "^3.0.3",
|
||||
"typescript": "^5.3.3"
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue