{
  "compilerOptions": {
    "composite": false,
    "module": "es2020",
    "target": "es6",
    "allowJs": true,
    "checkJs": true,
    "moduleResolution": "node",
    "alwaysStrict": true,
    "noImplicitAny": false,
    "strict": true,
    "strictNullChecks": true,
    "strictPropertyInitialization": true,
    "noEmit": false,
    "declaration": true,
    "emitDeclarationOnly": false,
    "emitDecoratorMetadata": true,
    "experimentalDecorators": true,
    "outDir": "./build/types",
    "resolveJsonModule": true,
    "esModuleInterop": true,
    "allowSyntheticDefaultImports": false,
    "skipLibCheck": false,
    "rootDir": "./",
    "baseUrl": "./"
  },
  "lib": [
    "dom"
  ],
  "files": [
    "package.json"
  ],
  "include": [
    "lib/**/*.js",
    "lib/**/*.ts",
  ],
  "exclude": [
    "node_modules",
    "build2"
  ]
}