Files
supabase/packages/ui-patterns/tsconfig.json
Ivan Vasilov 181f15752c chore: Move the files in ui-patterns under src folder (#36032)
* Move all components in ui-patterns into src folder. Add exports field for all files.

* Fix all apps to use the new ui-patterns.

* Fix the design-system build.

* Remove all unused rexports from ui-patterns index. Apps should use direct imports instead.

* Change the tailwind content property to include src folder of ui-patterns.

* Remove autoprefixer from the tailwind configs.

* Remove autoprefixer as a dependency.

* Fix the CVA conditions in FormLayout.
2025-05-30 12:46:22 +03:00

10 lines
265 B
JSON

{
"extends": "tsconfig/react-library.json",
"compilerOptions": {
"resolveJsonModule": true,
"incremental": true
},
"include": [".", "./../../packages/ui/src/**/*.d.ts", "../ui/src/components/Icons"],
"exclude": ["dist", "build", "node_modules"]
}