summaryrefslogtreecommitdiffhomepage
path: root/packages/ui/tsconfig.json
blob: 25f6a3dcc45c16a35dcb568700b9ebcb17b83896 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
  "$schema": "https://json.schemastore.org/tsconfig",
  "extends": "@tsconfig/node22/tsconfig.json",
  "compilerOptions": {
    // General
    "jsx": "preserve",
    "jsxImportSource": "solid-js",
    "target": "ESNext",
    // Modules
    "allowSyntheticDefaultImports": true,
    "esModuleInterop": true,
    "isolatedModules": true,
    "module": "ESNext",
    "moduleResolution": "bundler",
    "noEmit": true,
    "lib": ["es2023", "dom", "dom.iterable"],
    // Type Checking & Safety
    "strict": true,
    "types": ["vite/client", "bun"]
  },
  "exclude": ["**/*.stories.*", "**/*.mdx"]
}