Docs
安装
安装
如何安装依赖并构建你的应用。
框架
¥Frameworks
TypeScript
此项目和组件均使用 TypeScript 编写。我们也建议你在项目中使用 TypeScript。
¥This project and the components are written in TypeScript. We recommend using TypeScript for your project as well.
但是我们也提供了 JavaScript 版本的组件。JavaScript 版本可通过 cli 获得。
¥However we provide a JavaScript version of the components as well. The JavaScript version is available via the cli.
要退出 TypeScript,你可以在 components.json
文件中使用 tsx
标志。
¥To opt-out of TypeScript, you can use the tsx
flag in your components.json
file.
components.json
{
"style": "default",
"tailwind": {
"config": "tailwind.config.js",
"css": "src/app/globals.css",
"baseColor": "zinc",
"cssVariables": true
},
"rsc": false,
"tsx": false,
"aliases": {
"utils": "~/lib/utils",
"components": "~/components"
}
}
要配置导入别名,你可以使用以下 jsconfig.json
:
¥To configure import aliases, you can use the following jsconfig.json
:
jsconfig.json
{
"compilerOptions": {
"paths": {
"@/*": ["./*"]
}
}
}