Resolve "Setup Typescript" #11

Merged
clbertolini merged 5 commits from 2-setup-typescript into main 2023-09-26 21:00:53 +00:00
5 changed files with 68 additions and 1 deletions
Showing only changes of commit ac6a47e15f - Show all commits

3
.gitignore vendored
View File

@ -1 +1,2 @@
node_modules/**
node_modules/**
dist/**

View File

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