mirror of
https://github.com/QWRK-ORG/qwrk-laconic-core.git
synced 2026-06-01 06:00:11 +00:00
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
35 lines
553 B
JSON
35 lines
553 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/*"
|
|
]
|
|
}
|