{
  "compilerOptions": {
    "target": "ESNext",
    "module": "NodeNext",
    "moduleResolution": "NodeNext",
    "resolveJsonModule": true,
    "lib": ["dom", "esnext", "es2017.object", "webworker"],
    "types": ["node"],
    "strict": false,
    "jsx": "react-jsx",
    "noImplicitAny": false,
    "noImplicitThis": false,
    "allowSyntheticDefaultImports": true,
    "esModuleInterop": true,
    "downlevelIteration": true,
    "importHelpers": true,
    "experimentalDecorators": true,
    "emitDecoratorMetadata": true,
    "skipLibCheck": true,
    "strictNullChecks": true,
    "outDir": "dist",
    "typeRoots": ["node_modules/@types"],
    "paths": {
      "@puzzlehq/sdk-core": ["../core/src"]
    },
    "preserveSymlinks": true,
    "composite": true
  },
  "include": ["src", "dist/src/index.d.ts", "./src/global.d.ts", "package.json"],
  "exclude": ["node_modules"],
  "references": [
    { "path": "../core" }
  ]
}
