chore(config): update TypeScript and Tailwind configuration

This commit updates project configuration files:

- tsconfig.json: Updated TypeScript compiler configuration with
  improved module resolution, strict type checking settings,
  and output directory configurations

- tailwind.config.ts: Updated Tailwind CSS configuration with
  custom theme colors, typography settings, and responsive
  design breakpoints for the application styling
This commit is contained in:
2026-02-27 17:07:15 -05:00
parent 4e4312ac59
commit b6ce478fe3
2 changed files with 48 additions and 55 deletions
+2 -6
View File
@@ -16,10 +16,6 @@
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true
},
"include": [
"web/src/**/*.ts"
],
"exclude": [
"node_modules"
]
"include": ["web/src/**/*.ts"],
"exclude": ["node_modules"]
}