node-express-typescript-starter-2022
node-express-typescript-starter-2022 copied to clipboard
tsconfig.json "include" and "files" section
I wonder why did you use this at tsconfig.json :
{
...,
"include": [
"src/tests/**/*.ts"
],
"files": [
"src/index.ts"
]
}
Shouldn't we need typescript to recognize all inside "src" instead?