qwrk-laconic-core/apps/deploy-fe/tsconfig.json
Ian Cameron Lyles 9f9870113c
chore(ui): LAC-126 components migrated (#4)
* chore: Onboarding components migrated

* chore: wrap pages

* chore(components): Migrate core and navigation components

Migrated core and navigation components from Snowballtools repository:
- Core components: Dropdown, FormatMilliSecond, Logo, SearchBar, Stepper, StopWatch, VerticalStepper
- Navigation components: GitHubSessionButton, LaconicIcon, NavigationActions, WalletSessionId

Follows component migration guidelines with:
- Tailwind styling
- Consistent file structure
- TypeScript type definitions
- README documentation

* chore(routing): Basic routing within navigation

* chore: Import project cards and deps
2025-03-20 08:17:54 -07:00

25 lines
496 B
JSON

{
"extends": "@workspace/typescript-config/nextjs.json",
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"],
"@workspace/ui/*": ["../../services/ui/src/*"]
},
"plugins": [
{
"name": "next"
}
]
},
"include": [
"next-env.d.ts",
"next.config.mjs",
"src/**/*.ts",
"src/**/*.tsx",
// ".next/types/**/*.ts"
".next/types/**/*.ts"
],
"exclude": ["node_modules", ".next/*", ".turbo/*", ".vscode/*"]
}