mirror of
https://github.com/acedanger/finance.git
synced 2025-12-05 22:50:12 -08:00
- Updated dependencies in package.json for Astro, React, and testing libraries. - Added .assetsignore to exclude specific files from asset uploads. - Refactored AccountSummary, MainContent, and Sidebar components for clarity and maintainability. - Enhanced tsconfig.json to support React JSX syntax. - Created wrangler.jsonc for Cloudflare Workers configuration.
14 lines
211 B
JSON
14 lines
211 B
JSON
{
|
|
"extends": "astro/tsconfigs/strict",
|
|
"include": [
|
|
".astro/types.d.ts",
|
|
"**/*"
|
|
],
|
|
"exclude": [
|
|
"dist"
|
|
],
|
|
"compilerOptions": {
|
|
"jsx": "react-jsx",
|
|
"jsxImportSource": "react"
|
|
}
|
|
} |