Added gitignore and basic TypeScript config

This commit is contained in:
2023-10-03 16:32:13 -04:00
parent 5fc16bd907
commit 897a0f8d8a
4 changed files with 43 additions and 1 deletions

8
tsconfig.json Normal file
View File

@ -0,0 +1,8 @@
{
"extends": "@tsconfig/node-lts/tsconfig.json",
"compilerOptions": {
"outDir": "dist"
},
"include": ["src"],
"exclude": ["node_modules"]
}