{
  "compilerOptions": {
    "paths": {
      "@/*": ["./src/*"],
      "types": ["./types"],
    },
    "jsx": "preserve",
    "jsxFactory": "h",
    "jsxFragmentFactory": "Fragment",
    "jsxImportSource": "preact",
    "target": "ESNext",
    "module": "ESNext",
    "moduleResolution": "node",
    "allowSyntheticDefaultImports": true,
    "useUnknownInCatchVariables": false,
    "noEmit": true,
    "resolveJsonModule": true,
    "esModuleInterop": true,
    "lib": ["ES2019", "dom"],
    // node types should not be used in web-commons
    "types": []
  },
  "include": ["src"],
  "exclude": ["node_modules"]
}
