Initial commit

This commit is contained in:
Tera << 8 2024-04-16 09:03:21 -04:00 committed by GitHub
commit a4ea6406e6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 623 additions and 0 deletions

19
package.json Normal file
View 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"
}
}