Adds gitignore, tsconfig, basic scripts and a ts hello world

This commit is contained in:
albert
2025-07-28 10:18:55 +02:00
parent 16072a656e
commit 5f21982ed9
6 changed files with 270 additions and 1 deletions

View File

@ -15,6 +15,13 @@
"type": "module",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
"build": "tsc",
"start": "node dist/index.js",
"dev": "ts-node src/index.js"
},
"devDependencies": {
"@types/node": "^24.1.0",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
}
}