Files
nocobase/tsconfig.json
T
mahuantest ec9e9d25a3 docs: improve documentation style and add notification manager (#7646)
* docs: improve documentation style and add notification manager

- Update homepage styling to match Landrick design
  - Replace emoji icons with FontAwesome icons
  - Add gradient rotating square background on cards
  - Update card styles with subtle shadows
  - Improve button styles (colors, border-radius)
  - Update navigation menu styling and dropdown styles
  - Apply Nunito font throughout
  - Remove gradient from hero title
  - Optimize hero section spacing

- Add notification manager documentation
  - Add notification-email feature docs
  - Add notification-in-app-message feature docs
  - Add notification-manager development guides

- Configuration updates
  - Add .claude/ to .gitignore
  - Exclude docs directory from root tsconfig
  - Fix React key warning in HomeFeature component

* docs: restructure homepage layout and simplify card styles

- Reorganize homepage sections into 4 main groups:
  Get Started, Advanced, More Plugins, and Plugin Development
- Remove rotating square backgrounds and FontAwesome icons
  from feature cards
- Restore minimal gray background styling with
  theme-adaptive colors
- Add subtle hover effects: background change, shadow,
  border, and lift animation
- Fix group title colors to support dark mode using
  theme variables
- Update both English and Chinese versions

* docs: add link to notification manager in features section

* fix: restore navigation dropdown menus

- Restore dropdown items for 'Guide' and 'Development'
  navigation menus
- Add English navigation configuration file
- Fix missing navigation menu items that were
  accidentally removed

* docs: remove 'How NocoBase Works' card from homepage

* fix: restore search functionality by removing overly broad mask selector

The CSS rule [class*="mask_"] was hiding the search modal's backdrop,
preventing the search popup from displaying. Commented out this rule
to fix the search functionality.
2025-10-23 17:59:47 +08:00

38 lines
909 B
JSON

{
"extends": "./tsconfig.paths.json",
"compilerOptions": {
"esModuleInterop": true,
"moduleResolution": "node",
"jsx": "react",
"target": "esnext",
"module": "esnext",
"allowJs": true,
"noUnusedLocals": false,
"preserveConstEnums": true,
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"sourceMap": true,
"inlineSources": true,
"resolveJsonModule": true,
"declaration": true,
"experimentalDecorators": true,
"downlevelIteration": true,
"baseUrl": "."
},
"ts-node": {
"compilerOptions": {
"module": "commonjs"
}
},
"include": [".dumi/**/*", ".dumirc.ts", "packages/**/*", "playwright.config.ts", "vitest.config.mts"],
"exclude": [
"packages/**/node_modules",
"packages/**/dist",
"packages/**/public",
"packages/core/build/bin",
"packages/**/lib",
"packages/**/es",
"docs/**/*"
]
}