{
  "compilerOptions": {
    "outDir": "/lib",
    "target": "ESNext",
    "lib": [
      "DOM",
      "ESNext"
    ],
    "emitDecoratorMetadata": true,
    "declaration": true,
    "declarationMap": true,
    "sourceMap": true,
    "noImplicitAny": false,
    "strictNullChecks": true,
    "alwaysStrict": false,
    "moduleResolution": "node",
    "experimentalDecorators": true,
    "baseUrl": "./src",
    "jsx": "react-jsx",
    "allowSyntheticDefaultImports": true,
    "esModuleInterop": true
  },
  "include": [
    "./src/**/*",
    "*.d.ts",
    "./typings/externals.d.ts",
    "./background/externals.d.ts"
, "src/dom/__test__/.X.ts"  ],
  "exclude": [
    // "**/*/__test__/*",
    "./config/**/*",
    "**/*/md.ts",
    "**/*/*.md",
  ]
}