@will-stone/eslint-config 15.0.0 → 15.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +4 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -937,7 +937,10 @@ async function react(_options) {
|
|
|
937
937
|
// src/configs/tailwind.ts
|
|
938
938
|
async function tailwind(rawOptions) {
|
|
939
939
|
const options = !rawOptions || rawOptions === true ? {} : rawOptions;
|
|
940
|
-
const plugin = await
|
|
940
|
+
const plugin = await interopDefault(
|
|
941
|
+
// @ts-expect-error -- no types
|
|
942
|
+
import("eslint-plugin-tailwindcss")
|
|
943
|
+
);
|
|
941
944
|
return [
|
|
942
945
|
{
|
|
943
946
|
files: ["**/*.{jsx,tsx,astro}"],
|