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

12
tsconfig.json Normal file
View File

@ -0,0 +1,12 @@
{
"compilerOptions": {
"module": "ESNext",
"target": "es2020",
"moduleResolution": "Node",
"esModuleInterop": true,
"strict": true,
"outDir": "dist",
"rootDir": "src"
},
"include": ["src"]
}