chore(tsconfig.json): update "files" property to "includes" and include the entire "src" directory for better TypeScript compilation coverage

This commit is contained in:
AtHeartEngineer
2023-07-26 00:14:25 -04:00
committed by AtHeartEngineer
parent dfa316b505
commit a2e679a067

View File

@@ -8,7 +8,7 @@
"esModuleInterop": true,
"allowSyntheticDefaultImports": true
},
"files": [
"./src/server.ts"
"includes": [
"./src/"
]
}