mirror of
https://github.com/kyantech/Palmr.git
synced 2025-10-22 22:02:00 +00:00
- Updated the Husky pre-push hook to validate all applications (web, docs, and server) before pushing changes, improving code quality checks. - Modified ESLint configurations for the docs app to include additional ignored directories, ensuring cleaner linting results. - Refactored the HomePage component in the docs app to improve structure and readability, while reintroducing the Highlight component for better content presentation. - Added a .prettierignore file in the server app to exclude specific directories from formatting, enhancing development workflow. - Updated various import statements across multiple files for consistency and clarity.
22 lines
456 B
JSON
22 lines
456 B
JSON
{
|
|
"$schema": "https://json.schemastore.org/tsconfig",
|
|
"_version": "22.0.0",
|
|
"compilerOptions": {
|
|
"lib": ["es2023"],
|
|
"module": "node16",
|
|
"target": "es2022",
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"moduleResolution": "node16",
|
|
"outDir": "./dist",
|
|
"rootDir": "./src",
|
|
"baseUrl": "./src",
|
|
"paths": {
|
|
"@/*": ["src/*"]
|
|
}
|
|
},
|
|
"display": "Node 22",
|
|
"include": ["src/**/*"]
|
|
}
|