Files
kami_apple_exchage/frontend/tsconfig.json
danial d6e96897f4 style: enhance SCSS styles for improved readability and consistency
- 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.
2025-09-10 00:04:03 +08:00

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"]
}