mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-06-11 09:51:40 +00:00
45 lines
1.0 KiB
Plaintext
45 lines
1.0 KiB
Plaintext
---
|
|
title: JavaScript
|
|
description: How to use shadcn/ui with JavaScript
|
|
---
|
|
|
|
This project and the components are written in TypeScript. We recommend using TypeScript for your project as well.
|
|
|
|
However we provide a JavaScript version of the components as well. The JavaScript version is available via the [cli](/docs/cli).
|
|
|
|
To opt-out of TypeScript, you can use the `tsx` flag in your `components.json` file.
|
|
|
|
```json {4} title="components.json" showLineNumbers
|
|
{
|
|
"style": "new-york",
|
|
"rsc": false,
|
|
"tsx": false,
|
|
"tailwind": {
|
|
"config": "",
|
|
"css": "src/app/globals.css",
|
|
"baseColor": "zinc",
|
|
"cssVariables": true
|
|
},
|
|
"iconLibrary": "lucide",
|
|
"aliases": {
|
|
"components": "@/components",
|
|
"utils": "@/lib/utils",
|
|
"ui": "@/components/ui",
|
|
"lib": "@/lib",
|
|
"hooks": "@/hooks"
|
|
}
|
|
}
|
|
```
|
|
|
|
To configure import aliases, you can use the following `jsconfig.json`:
|
|
|
|
```json {4} title="jsconfig.json" showLineNumbers
|
|
{
|
|
"compilerOptions": {
|
|
"paths": {
|
|
"@/*": ["./*"]
|
|
}
|
|
}
|
|
}
|
|
```
|