tailwindcss/demo/tsconfig.json
lemon c0b77cd04a
feat!: support Tailwind v4 (#22)
* chore: cleanup and prepare for v4

Due to tailwinds extensive rewrite in version 4 a lot of things previously used in this repo aren't needed anymore.

* feat: add SASS utilities

* chore: build

* chore: rename "shades" to "palette"

* chore: unminified build

* feat: add default prefix

* feat(demo): very WIP not-even-MVP

* feat(demo): responsive hero section

* feat(demo): examples

* feat(demo): calendar widget

* feat(demo): credit card and new layout

* feat(demo): animate on hover

* refactor: use ctp/palette beta release

instead of building the palette locally this now uses the beta relase from ctp/palette.

* refactor: move to monorepo

* build(npm): fix link

* chore: rename `tailwind.config` -> `config`

* build(npm): set version to `1.0.0-beta.1`

* docs: more generic instructions

* ci: don't try to publish on tag

* feat!: generate frappe and macchiato alongside mocha

* chore: remove publish

* build(npm): add description

* ci: specify node version

* end of day commit – this is a mess

* fix: typo `roswater` -> `rosewater`

* feat(demo): working theme switcher

* style(flavour switcher): apply proper CSS styling

* fix(colour grid): avoid mobile overflow

* fix(hero): no more ultra wide stretching

* refactor(demo): use different colour for currently selected theme

* chore: remove placeholder text

* fix(colour swatches): mobile border collapse

* feat(layout): add simple footer

* refactor(hero): enlarge contents on higher resolutions

* ci: update github-pages workflow & pnpm

---------

Co-authored-by: sgoudham <sgoudham@gmail.com>
2025-07-26 00:32:40 +01:00

13 lines
259 B
JSON

{
"extends": "astro/tsconfigs/strict",
"include": [".astro/types.d.ts", "**/*"],
"exclude": ["dist"],
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@components/*": ["src/components/*"],
"@styles/*": ["src/styles/*"]
}
}
}