{
  "compilerOptions": {
    "declaration": true,
    "esModuleInterop": true,
    "target": "ES2018",
    "module": "ESNext",
    "moduleResolution": "node",
    "lib": ["dom", "dom.iterable", "esnext"],
    "allowJs": true,
    "skipLibCheck": true,
    "strict": true,
    "forceConsistentCasingInFileNames": true,
    "resolveJsonModule": true,
    "isolatedModules": true,
    "jsx": "react-jsx",
    "incremental": true,
    "plugins": [
      {
        "name": "next"
      }
    ],
    "baseUrl": ".",
    "paths": {
      "@/*": ["./src/*"]
    },
    "outDir": "dist"
  },
  "include": [
    "next-env.d.ts",
    "**/*.ts",
    "**/*.tsx",
    ".next/types/**/*.ts",
    "src"
  ],
  "exclude": [
    "node_modules",
    "tailwind.config.js",
    // these files are using tailwind.config.js, which makes so that the dist
    // folder nests everything inside the src folder, which is not what we want
    // see https://stackoverflow.com/a/58941798/169274
    "src/components/typography/font-styles.tsx",
    "src/components/colors/color-list.tsx"
  ]
}
