updateweb

This commit is contained in:
Local Server
2026-01-01 22:24:30 -06:00
parent 017c6376fc
commit 1919f6f8bb
185 changed files with 19860 additions and 17603 deletions

56
backend/tsconfig.json Normal file
View File

@@ -0,0 +1,56 @@
{
"compilerOptions": {
"target": "ES2020",
"module": "ESNext",
"lib": [
"ES2020"
],
"moduleResolution": "node",
"esModuleInterop": true,
"skipLibCheck": true,
"allowSyntheticDefaultImports": true,
/* Type Checking */
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
/* Output */
"outDir": "./dist",
"rootDir": "./src",
"sourceMap": true,
"declaration": true,
/* Path Aliases */
"baseUrl": ".",
"paths": {
"@/*": [
"src/*"
],
"@config/*": [
"src/config/*"
],
"@controllers/*": [
"src/controllers/*"
],
"@services/*": [
"src/services/*"
],
"@models/*": [
"src/models/*"
],
"@middlewares/*": [
"src/middlewares/*"
],
"@helpers/*": [
"src/helpers/*"
]
}
},
"include": [
"src/**/*"
],
"exclude": [
"node_modules",
"dist"
]
}