mirror of
https://github.com/kjanat/livedash-node.git
synced 2026-01-16 09:12:08 +01:00
- Added @tailwindcss/postcss to devDependencies for better PostCSS integration. - Enhanced session import logic in refresh-sessions.ts to ensure proper data mapping and type safety. - Updated postcss.config.js to use the correct plugin name for Tailwind CSS. - Modified tsconfig.json to temporarily disable strict mode and allow implicit any types for smoother development.
12 lines
230 B
JSON
12 lines
230 B
JSON
{
|
|
"extends": [
|
|
"next/core-web-vitals",
|
|
"next/typescript"
|
|
],
|
|
"rules": {
|
|
"@typescript-eslint/no-explicit-any": "off",
|
|
"@typescript-eslint/no-unused-vars": "warn",
|
|
"@typescript-eslint/ban-ts-comment": "off"
|
|
}
|
|
}
|