mirror of
https://git.oceanpay.cc/danial/kami_apple_exchage.git
synced 2025-12-18 21:23:49 +00:00
- Refactored SCSS styles in apple-system-components.module.scss for better formatting and added backdrop filters. - Updated glass-components.module.scss to include backdrop filters and improve visual effects. - Modified main.module.scss to ensure consistent text size adjustments and backdrop filters across components. - Improved glass.module.scss with consistent text size adjustments and enhanced visual styles. - Refined mixins.module.scss for better readability and consistency in conditional statements. - Changed TypeScript target version in tsconfig.json from ES2023 to ES2022 for compatibility.
29 lines
667 B
JSON
29 lines
667 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
"strict": true,
|
|
"noEmit": true,
|
|
"esModuleInterop": true,
|
|
"module": "esnext",
|
|
"moduleResolution": "bundler",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"jsx": "preserve",
|
|
"incremental": true,
|
|
"plugins": [
|
|
{
|
|
"name": "next"
|
|
}
|
|
],
|
|
"paths": {
|
|
"@/*": ["./src/*"]
|
|
},
|
|
"baseUrl": ".",
|
|
"forceConsistentCasingInFileNames": true
|
|
},
|
|
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
|
|
"exclude": ["node_modules"]
|
|
} |