File tree Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change 1- import type { PluginCreator } from 'tailwindcss/types/config'
1+ import type { PluginCreator } from 'tailwindcss/types/config.js '
22
33/**
44 * Tailwind plugin for hide scrollbars, although the element can still be scrolled if the element's content overflows.
@@ -35,4 +35,4 @@ const scrollbarHide: PluginCreator = ({ addUtilities }) =>
3535 } )
3636
3737// override type for v3/4 compatibility
38- export = scrollbarHide as ( ) => void
38+ export default scrollbarHide as ( ) => void
Original file line number Diff line number Diff line change 11{
22 "compilerOptions" : {
33 "moduleDetection" : " force" ,
4- "module" : " Preserve " ,
4+ "module" : " NodeNext " ,
55 "resolveJsonModule" : true ,
66 "allowJs" : true ,
77 "esModuleInterop" : true ,
88 "isolatedModules" : true ,
99 "outDir" : " dist" ,
10- "declaration" : true
10+ "declaration" : true ,
11+ "moduleResolution" : " NodeNext" ,
12+ "target" : " ES2021" ,
1113 },
1214 "include" : [
1315 " src/**/*"
You can’t perform that action at this time.
0 commit comments