Typescript-Eslint Error
why does the tailwind.config.ts file need to be in typescript and written like this?
typescript-eslint gives a parsing error when I try to write it the normal way
import { type Config } from "tailwindcss";
export default {
content: ["./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {},
},
plugins: [],
} satisfies Config;/** @type {import('tailwindcss').Config} */
module.exports = {
...
}