* Install/add components in base coss-ui package * fix components imports * add yarn script to pull * Update packagejson * remove skeleton duplicates * feat: allow importing components with the cli * fix: update exports in package.json to reference styles.css instead of globals.css * add lucide dep * refactor: re-pull components * refactor: remove unused registries section from components.json * refactor: implement changes suggested by Volnei * refactor(wip): implemet coss ui components on the profile page * fix src/src problem * update command to overwrite existing components * pulled from registry * restore globals.css * feat: add pull script * feat: enhance pull script with validation and error handling * remove duplicate components * refactor: reimport coss component and fix ts errors * fix: components pulling * chore: regenerate yarn.lock * chore: remove tailwindcss/forms * trying different moduleResolution * TypeScript requires module to also be "NodeNext". * remove unnecessary changes * type fixes plus resolve @coss/ui * use bundler tsconfig * add missing deps to features and ui * Add bundler to other packages * fix module enext resolution with bundler * remove reduant files * remove package json from features * revert unrelated change to the PR --------- Co-authored-by: pasqualevitiello <pasqualevitiello@gmail.com> Co-authored-by: Eunjae Lee <hey@eunjae.dev>
39 lines
1.1 KiB
JSON
39 lines
1.1 KiB
JSON
{
|
|
"extends": "@calcom/tsconfig/nextjs.json",
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"~/*": ["modules/*"],
|
|
"@components/*": ["components/*"],
|
|
"@pages/*": ["pages/*"],
|
|
"@lib/*": ["lib/*"],
|
|
"@server/*": ["server/*"],
|
|
"@prisma/client/*": ["@calcom/prisma/client/*"],
|
|
"@calcom/repository/*": ["@calcom/lib/server/repository/*"],
|
|
"@coss/ui/*": ["../../packages/coss-ui/src/*"]
|
|
},
|
|
"plugins": [
|
|
{
|
|
"name": "next"
|
|
}
|
|
],
|
|
"strictNullChecks": true,
|
|
"experimentalDecorators": true
|
|
},
|
|
"include": [
|
|
/* Find a way to not require this - App files don't belong here. */
|
|
"../../packages/app-store/routing-forms/env.d.ts",
|
|
"next-env.d.ts",
|
|
"../../packages/trpc/types/router.d.ts",
|
|
"../../packages/types/*.d.ts",
|
|
"../../packages/types/next-auth.d.ts",
|
|
"**/*.ts",
|
|
"**/*.tsx",
|
|
".next/types/**/*.ts",
|
|
"../../packages/features/bookings/lib/getBookingInfo.ts",
|
|
"../../packages/features/bookings/lib/getUserBooking.ts",
|
|
"../../packages/features/Segment.tsx"
|
|
],
|
|
"exclude": ["**/node_modules/**", ".next"]
|
|
}
|