Developer config files such as Biome, TypeScript, and PostCSS.
bun add @rubriclab/config
// biome.json
{
"extends": ["@rubriclab/config/biome"]
}
// tsconfig.json
{
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"]
},
"plugins": [{ "name": "next" }],
"target": "esnext"
},
"exclude": ["node_modules"],
"extends": "@rubriclab/config/tsconfig",
"include": ["./src/**/*.ts", "./src/**/*.tsx", ".next/types/**/*.ts", "next-env.d.ts"]
}
// postcss.config.mjs
export default {
plugins: ["@tailwindcss/postcss"]
}