1
1
mirror of https://github.com/theoludwig/theoludwig.git synced 2025-05-29 22:37:44 +02:00

chore: simplify TypeScript config

This commit is contained in:
2024-09-11 23:53:26 +02:00
parent 6853ac6884
commit 386f407f21
98 changed files with 2355 additions and 2682 deletions

View File

@ -1,6 +1,6 @@
import type { Meta, StoryObj } from "@storybook/react"
import { CurriculumVitae as CurriculumVitaeComponent } from "./CurriculumVitae"
import { CurriculumVitae as CurriculumVitaeComponent } from "./CurriculumVitae.tsx"
const meta = {
title: "Curriculum Vitae/CurriculumVitae",

View File

@ -1,9 +1,9 @@
import { CurriculumVitaeAbout } from "./CurriculumVitaeAbout"
import { CurriculumVitaeEducation } from "./CurriculumVitaeEducation"
import { CurriculumVitaeInterests } from "./CurriculumVitaeInterests"
import { CurriculumVitaeProfile } from "./CurriculumVitaeProfile"
import { CurriculumVitaeSkills } from "./CurriculumVitaeSkills"
import { CurriculumVitaeWork } from "./CurriculumVitaeWork"
import { CurriculumVitaeAbout } from "./CurriculumVitaeAbout.tsx"
import { CurriculumVitaeEducation } from "./CurriculumVitaeEducation.tsx"
import { CurriculumVitaeInterests } from "./CurriculumVitaeInterests.tsx"
import { CurriculumVitaeProfile } from "./CurriculumVitaeProfile.tsx"
import { CurriculumVitaeSkills } from "./CurriculumVitaeSkills.tsx"
import { CurriculumVitaeWork } from "./CurriculumVitaeWork.tsx"
export interface CurriculumVitaeProps {}

View File

@ -1,6 +1,6 @@
import { useTranslations } from "next-intl"
import { FaUser } from "react-icons/fa"
import { CurriculumVitaeSection } from "./CurriculumVitaeSection"
import { CurriculumVitaeSection } from "./CurriculumVitaeSection.tsx"
export interface CurriculumVitaeAboutProps {}

View File

@ -1,6 +1,6 @@
import { useTranslations } from "next-intl"
import { FaGraduationCap } from "react-icons/fa"
import { CurriculumVitaeSection } from "./CurriculumVitaeSection"
import { CurriculumVitaeSection } from "./CurriculumVitaeSection.tsx"
export interface CurriculumVitaeEducationProps {}

View File

@ -1,6 +1,6 @@
import { useTranslations } from "next-intl"
import { FaHeart } from "react-icons/fa"
import { CurriculumVitaeSection } from "./CurriculumVitaeSection"
import { CurriculumVitaeSection } from "./CurriculumVitaeSection.tsx"
export interface CurriculumVitaeInterestsProps {}

View File

@ -1,8 +1,8 @@
import { Link } from "@repo/i18n/navigation"
import { useTranslations } from "next-intl"
import Image from "next/image"
import { BirthDate } from "../Home/About/AboutList/BirthDate"
import { Locales } from "../Layout/Header/Locales/Locales"
import { BirthDate } from "../Home/About/AboutList/BirthDate.tsx"
import { Locales } from "../Layout/Header/Locales/Locales.tsx"
export interface CurriculumVitaeProfileProps {}

View File

@ -3,8 +3,8 @@ import { FaToolbox } from "react-icons/fa"
import {
SKILL_CATEGORIES,
SKILL_NAMES_BY_CATEGORY,
} from "../Home/Skills/skills"
import { CurriculumVitaeSection } from "./CurriculumVitaeSection"
} from "../Home/Skills/skills.ts"
import { CurriculumVitaeSection } from "./CurriculumVitaeSection.tsx"
export interface CurriculumVitaeSkillsProps {}

View File

@ -1,6 +1,6 @@
import { useTranslations } from "next-intl"
import { MdWork } from "react-icons/md"
import { CurriculumVitaeSection } from "./CurriculumVitaeSection"
import { CurriculumVitaeSection } from "./CurriculumVitaeSection.tsx"
export interface CurriculumVitaeWorkProps {}

View File

@ -2,8 +2,8 @@ import type { Meta, StoryObj } from "@storybook/react"
import { expect, fn, userEvent, within } from "@storybook/test"
import { FaCheck } from "react-icons/fa"
import type { ButtonLinkProps } from "./Button"
import { Button } from "./Button"
import type { ButtonLinkProps } from "./Button.tsx"
import { Button } from "./Button.tsx"
const meta = {
title: "Design System/Button",

View File

@ -3,8 +3,8 @@ import { Link as NextLink } from "@repo/i18n/navigation"
import type { VariantProps } from "cva"
import { cva } from "cva"
import { Spinner } from "../Spinner/Spinner"
import { Ripple } from "./Ripple"
import { Spinner } from "../Spinner/Spinner.tsx"
import { Ripple } from "./Ripple.tsx"
const buttonVariants = cva({
base: "relative inline-flex items-center justify-center overflow-hidden rounded-md text-base font-semibold transition duration-150 ease-in-out focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-offset-2 disabled:cursor-not-allowed disabled:opacity-50",

View File

@ -1,6 +1,6 @@
import type { Meta, StoryObj } from "@storybook/react"
import { Link } from "./Link"
import { Link } from "./Link.tsx"
const meta = {
title: "Design System/Link",

View File

@ -1,6 +1,6 @@
import type { Meta, StoryObj } from "@storybook/react"
import { Spinner } from "./Spinner"
import { Spinner } from "./Spinner.tsx"
const meta = {
title: "Design System/Spinner",

View File

@ -1,7 +1,7 @@
import type { Meta, StoryObj } from "@storybook/react"
import type { TypographyProps } from "./Typography"
import { Typography } from "./Typography"
import type { TypographyProps } from "./Typography.tsx"
import { Typography } from "./Typography.tsx"
const meta = {
title: "Design System/Typography",

View File

@ -1,6 +1,6 @@
import type { Meta, StoryObj } from "@storybook/react"
import { ErrorNotFound as ErrorNotFoundComponent } from "./ErrorNotFound"
import { ErrorNotFound as ErrorNotFoundComponent } from "./ErrorNotFound.tsx"
const meta = {
title: "Errors/ErrorNotFound",

View File

@ -1,8 +1,8 @@
import { useTranslations } from "next-intl"
import { Link } from "../../Design/Link/Link"
import { Typography } from "../../Design/Typography/Typography"
import { MainLayout } from "../../Layout/MainLayout/MainLayout"
import { Section } from "../../Layout/Section/Section"
import { Link } from "../../Design/Link/Link.tsx"
import { Typography } from "../../Design/Typography/Typography.tsx"
import { MainLayout } from "../../Layout/MainLayout/MainLayout.tsx"
import { Section } from "../../Layout/Section/Section.tsx"
export interface ErrorNotFoundProps {}

View File

@ -1,7 +1,7 @@
import type { Meta, StoryObj } from "@storybook/react"
import { expect, fn, userEvent, within } from "@storybook/test"
import { ErrorServer as ErrorServerComponent } from "./ErrorServer"
import { ErrorServer as ErrorServerComponent } from "./ErrorServer.tsx"
const meta = {
title: "Errors/ErrorServer",

View File

@ -2,10 +2,10 @@
import { useTranslations } from "next-intl"
import { useEffect } from "react"
import { Button } from "../../Design/Button/Button"
import { Typography } from "../../Design/Typography/Typography"
import { MainLayout } from "../../Layout/MainLayout/MainLayout"
import { Section } from "../../Layout/Section/Section"
import { Button } from "../../Design/Button/Button.tsx"
import { Typography } from "../../Design/Typography/Typography.tsx"
import { MainLayout } from "../../Layout/MainLayout/MainLayout.tsx"
import { Section } from "../../Layout/Section/Section.tsx"
export interface ErrorServerProps {
error: Error & { digest?: string }

View File

@ -1,6 +1,6 @@
import type { Meta, StoryObj } from "@storybook/react"
import { About as AboutComponent } from "./About"
import { About as AboutComponent } from "./About.tsx"
const meta = {
title: "Home/About",

View File

@ -1,9 +1,9 @@
import { Section, SectionContent } from "../../Layout/Section/Section"
import { AboutDescription } from "./AboutDescription"
import { AboutIntroduction } from "./AboutIntroduction"
import { AboutList } from "./AboutList/AboutList"
import { AboutLogo } from "./AboutLogo"
import { SocialMediaList } from "./SocialMediaList/SocialMediaList"
import { Section, SectionContent } from "../../Layout/Section/Section.tsx"
import { AboutDescription } from "./AboutDescription.tsx"
import { AboutIntroduction } from "./AboutIntroduction.tsx"
import { AboutList } from "./AboutList/AboutList.tsx"
import { AboutLogo } from "./AboutLogo.tsx"
import { SocialMediaList } from "./SocialMediaList/SocialMediaList.tsx"
export interface AboutProps {}

View File

@ -1,6 +1,6 @@
import { useTranslations } from "next-intl"
import { Button } from "../../Design/Button/Button"
import { Typography } from "../../Design/Typography/Typography"
import { Button } from "../../Design/Button/Button.tsx"
import { Typography } from "../../Design/Typography/Typography.tsx"
export interface AboutDescriptionProps {}

View File

@ -1,5 +1,5 @@
import { useTranslations } from "next-intl"
import { Typography } from "../../Design/Typography/Typography"
import { Typography } from "../../Design/Typography/Typography.tsx"
export interface AboutIntroductionProps {}

View File

@ -1,6 +1,6 @@
import { useTranslations } from "next-intl"
import { AboutItem } from "./AboutItem"
import { BirthDate } from "./BirthDate"
import { AboutItem } from "./AboutItem.tsx"
import { BirthDate } from "./BirthDate.tsx"
export interface AboutListProps {}

View File

@ -1,4 +1,4 @@
import { Icon } from "./Icon"
import { Icon } from "./Icon.tsx"
export const EmailIcon: React.FC<React.SVGProps<SVGSVGElement>> = (props) => {
return (

View File

@ -1,4 +1,4 @@
import { Icon } from "./Icon"
import { Icon } from "./Icon.tsx"
export const GitHubIcon: React.FC<React.SVGProps<SVGSVGElement>> = (props) => {
return (

View File

@ -1,4 +1,4 @@
import { Icon } from "./Icon"
import { Icon } from "./Icon.tsx"
export const GitLabIcon: React.FC<React.SVGProps<SVGSVGElement>> = (props) => {
return (

View File

@ -1,4 +1,4 @@
import { Icon } from "./Icon"
import { Icon } from "./Icon.tsx"
export const NPMIcon: React.FC<React.SVGProps<SVGSVGElement>> = (props) => {
return (

View File

@ -1,4 +1,4 @@
import { Icon } from "./Icon"
import { Icon } from "./Icon.tsx"
export const TwitchIcon: React.FC<React.SVGProps<SVGSVGElement>> = (props) => {
return (

View File

@ -1,4 +1,4 @@
import { Icon } from "./Icon"
import { Icon } from "./Icon.tsx"
export const TwitterIcon: React.FC<React.SVGProps<SVGSVGElement>> = (props) => {
return (

View File

@ -1,4 +1,4 @@
import { Icon } from "./Icon"
import { Icon } from "./Icon.tsx"
export const YouTubeIcon: React.FC<React.SVGProps<SVGSVGElement>> = (props) => {
return (

View File

@ -1,11 +1,11 @@
import { EmailIcon } from "./SocialMediaIcons/EmailIcon"
import { GitHubIcon } from "./SocialMediaIcons/GitHubIcon"
import { GitLabIcon } from "./SocialMediaIcons/GitLabIcon"
import { NPMIcon } from "./SocialMediaIcons/NPMIcon"
import { TwitchIcon } from "./SocialMediaIcons/TwitchIcon"
import { TwitterIcon } from "./SocialMediaIcons/TwitterIcon"
import { YouTubeIcon } from "./SocialMediaIcons/YouTubeIcon"
import { SocialMediaItem } from "./SocialMediaItem"
import { EmailIcon } from "./SocialMediaIcons/EmailIcon.tsx"
import { GitHubIcon } from "./SocialMediaIcons/GitHubIcon.tsx"
import { GitLabIcon } from "./SocialMediaIcons/GitLabIcon.tsx"
import { NPMIcon } from "./SocialMediaIcons/NPMIcon.tsx"
import { TwitchIcon } from "./SocialMediaIcons/TwitchIcon.tsx"
import { TwitterIcon } from "./SocialMediaIcons/TwitterIcon.tsx"
import { YouTubeIcon } from "./SocialMediaIcons/YouTubeIcon.tsx"
import { SocialMediaItem } from "./SocialMediaItem.tsx"
export interface SocialMediaListProps {}

View File

@ -1,4 +1,4 @@
import { Typography } from "../../Design/Typography/Typography"
import { Typography } from "../../Design/Typography/Typography.tsx"
export interface InterestItemProps {
title: string

View File

@ -1,6 +1,6 @@
import type { Meta, StoryObj } from "@storybook/react"
import { Interests as InterestsComponent } from "./Interests"
import { Interests as InterestsComponent } from "./Interests.tsx"
const meta = {
title: "Home/Interests",

View File

@ -1,13 +1,13 @@
import { GIT_REPO_LINK } from "@repo/utils/constants"
import { useTranslations } from "next-intl"
import { FaGit, FaMicrochip } from "react-icons/fa"
import { Link } from "../../Design/Link/Link"
import { Link } from "../../Design/Link/Link.tsx"
import {
Section,
SectionContent,
SectionTitle,
} from "../../Layout/Section/Section"
import { InterestItem } from "./InterestItem"
} from "../../Layout/Section/Section.tsx"
import { InterestItem } from "./InterestItem.tsx"
export interface InterestsProps {}

View File

@ -1,6 +1,6 @@
import type { Meta, StoryObj } from "@storybook/react"
import { OpenSource as OpenSourceComponent } from "./OpenSource"
import { OpenSource as OpenSourceComponent } from "./OpenSource.tsx"
const meta = {
title: "Home/OpenSource",

View File

@ -3,8 +3,8 @@ import {
Section,
SectionDescription,
SectionTitle,
} from "../../Layout/Section/Section"
import { Repository } from "./Repository"
} from "../../Layout/Section/Section.tsx"
import { Repository } from "./Repository.tsx"
export interface OpenSourceProps {}

View File

@ -1,6 +1,6 @@
import { Typography } from "../../Design/Typography/Typography"
import { SectionContent } from "../../Layout/Section/Section"
import { GitHubIcon } from "../About/SocialMediaList/SocialMediaIcons/GitHubIcon"
import { Typography } from "../../Design/Typography/Typography.tsx"
import { SectionContent } from "../../Layout/Section/Section.tsx"
import { GitHubIcon } from "../About/SocialMediaList/SocialMediaIcons/GitHubIcon.tsx"
export interface RepositoryProps {
name: string

View File

@ -1,6 +1,6 @@
import type { Meta, StoryObj } from "@storybook/react"
import { Portfolio as PortfolioComponent } from "./Portfolio"
import { Portfolio as PortfolioComponent } from "./Portfolio.tsx"
const meta = {
title: "Home/Portfolio",

View File

@ -1,6 +1,6 @@
import { useTranslations } from "next-intl"
import { Section, SectionTitle } from "../../Layout/Section/Section"
import { PortfolioItem, type PortfolioProject } from "./PortfolioItem"
import { Section, SectionTitle } from "../../Layout/Section/Section.tsx"
import { PortfolioItem, type PortfolioProject } from "./PortfolioItem.tsx"
export interface PortfolioProps {}

View File

@ -1,6 +1,6 @@
import Image from "next/image"
import { Typography } from "../../Design/Typography/Typography"
import { SectionContent } from "../../Layout/Section/Section"
import { Typography } from "../../Design/Typography/Typography.tsx"
import { SectionContent } from "../../Layout/Section/Section.tsx"
export interface PortfolioProject {
id: string

View File

@ -2,10 +2,10 @@
import Image from "next/image"
import { useMemo } from "react"
import { Link } from "../../Design/Link/Link"
import { useTheme } from "../../Layout/Header/SwitchTheme"
import type { SkillName } from "./skills"
import { SKILLS } from "./skills"
import { Link } from "../../Design/Link/Link.tsx"
import { useTheme } from "../../Layout/Header/SwitchTheme.tsx"
import type { SkillName } from "./skills.ts"
import { SKILLS } from "./skills.ts"
export interface SkillItemProps {
skillName: SkillName

View File

@ -1,6 +1,6 @@
import type { Meta, StoryObj } from "@storybook/react"
import { Skills as SkillsComponent } from "./Skills"
import { Skills as SkillsComponent } from "./Skills.tsx"
const meta = {
title: "Home/Skills",

View File

@ -1,8 +1,8 @@
import { useTranslations } from "next-intl"
import { Section, SectionTitle } from "../../Layout/Section/Section"
import { SkillItem } from "./SkillItem"
import { SkillsSection } from "./SkillsSection"
import { SKILL_CATEGORIES, SKILL_NAMES_BY_CATEGORY } from "./skills"
import { Section, SectionTitle } from "../../Layout/Section/Section.tsx"
import { SkillItem } from "./SkillItem.tsx"
import { SkillsSection } from "./SkillsSection.tsx"
import { SKILL_CATEGORIES, SKILL_NAMES_BY_CATEGORY } from "./skills.ts"
export interface SkillsProps {}

View File

@ -1,5 +1,5 @@
import { Typography } from "../../Design/Typography/Typography"
import { SectionContent } from "../../Layout/Section/Section"
import { Typography } from "../../Design/Typography/Typography.tsx"
import { SectionContent } from "../../Layout/Section/Section.tsx"
export interface SkillsSectionProps extends React.PropsWithChildren {
title: string

View File

@ -1,6 +1,6 @@
import type { Meta, StoryObj } from "@storybook/react"
import { Footer as FooterComponent } from "./Footer"
import { Footer as FooterComponent } from "./Footer.tsx"
const meta = {
title: "Layout/Footer",

View File

@ -1,7 +1,7 @@
import { useTranslations } from "next-intl"
import { GIT_REPO_LINK } from "@repo/utils/constants"
import { Link } from "../../Design/Link/Link"
import { Link } from "../../Design/Link/Link.tsx"
export interface FooterProps {
version: string

View File

@ -1,6 +1,6 @@
import type { Meta, StoryObj } from "@storybook/react"
import { Header as HeaderComponent } from "./Header"
import { Header as HeaderComponent } from "./Header.tsx"
const meta = {
title: "Layout/Header",

View File

@ -1,8 +1,8 @@
import { useTranslations } from "next-intl"
import Image from "next/image"
import { Link } from "../../Design/Link/Link"
import { Locales } from "./Locales/Locales"
import { SwitchTheme } from "./SwitchTheme"
import { Link } from "../../Design/Link/Link.tsx"
import { Locales } from "./Locales/Locales.tsx"
import { SwitchTheme } from "./SwitchTheme.tsx"
export interface HeaderProps {}

View File

@ -1,4 +1,4 @@
import type { Locale } from "@repo/i18n/config"
import type { Locale } from "@repo/utils/constants"
import { useTranslations } from "next-intl"
import Image from "next/image"

View File

@ -1,15 +1,15 @@
"use client"
import { classNames } from "@repo/config-tailwind/classNames"
import type { Locale } from "@repo/i18n/config"
import { LOCALES } from "@repo/i18n/config"
import { usePathname, useRouter } from "@repo/i18n/navigation"
import type { Locale } from "@repo/utils/constants"
import { LOCALES } from "@repo/utils/constants"
import { useLocale } from "next-intl"
import { useEffect, useRef } from "react"
import { useBoolean } from "@repo/react-hooks/useBoolean"
import { Arrow } from "./Arrow"
import { LocaleFlag } from "./LocaleFlag"
import { Arrow } from "./Arrow.tsx"
import { LocaleFlag } from "./LocaleFlag.tsx"
export interface LocalesProps {}

View File

@ -2,15 +2,13 @@
import { classNames } from "@repo/config-tailwind/classNames"
import { useIsMounted } from "@repo/react-hooks/useIsMounted"
import type { Theme } from "@repo/utils/constants"
import { THEME_DEFAULT } from "@repo/utils/constants"
import {
ThemeProvider as NextThemeProvider,
useTheme as useNextTheme,
} from "next-themes"
export const THEMES = ["light", "dark"] as const
export type Theme = (typeof THEMES)[number]
export const THEME_DEFAULT = "dark" as Theme
export interface ThemeProviderProps extends React.PropsWithChildren {
forcedTheme?: Theme
}

View File

@ -1,8 +1,8 @@
import { classNames } from "@repo/config-tailwind/classNames"
import type { TypographyProps } from "../../Design/Typography/Typography"
import { Typography } from "../../Design/Typography/Typography"
import type { TypographyProps } from "../../Design/Typography/Typography.tsx"
import { Typography } from "../../Design/Typography/Typography.tsx"
export * from "./RevealFade"
export * from "./RevealFade.tsx"
export interface SectionProps
extends React.ComponentPropsWithoutRef<"section"> {

View File

@ -1,14 +1,7 @@
{
"extends": "@repo/config-typescript/tsconfig.json",
"compilerOptions": {
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "Bundler",
"resolveJsonModule": true,
"lib": ["DOM", "DOM.Iterable", "ESNext"],
"types": ["@total-typescript/ts-reset", "@repo/i18n/messages.d.ts"],
"jsx": "preserve",
"noEmit": true
"types": ["@total-typescript/ts-reset", "@repo/i18n/messages.d.ts"]
}
}