{
  "compilerOptions": {
    "target": "ES2020",
    "declaration": true,
    "rootDir": "src",
    "emitDeclarationOnly": true,
    "declarationDir": "dist/types",

    "useDefineForClassFields": true,
    "experimentalDecorators": true,
    "skipLibCheck": true,
    "lib": ["ES2020", "DOM", "DOM.Iterable"],
    "jsx": "react-jsx",

    /* Bundler mode */
    "module": "ESNext",
    "moduleResolution": "Bundler",

    /* Linting */
    "strict": true,
    "noUnusedLocals": false,
    "noUnusedParameters": false,
    "noFallthroughCasesInSwitch": true,
    "composite": true
  },
  "include": ["src/**/*"],
  "references": [{ "path": "../utils" }, { "path": "../interactions" }, { "path": "../react-pkg" }]
}
