tsconfig.json 559 Bytes
{
  "compilerOptions": {
    "target": "esnext",
    "module": "esnext",
    "moduleResolution": "node",
    "strict": true,
    "declaration": true,
    "skipLibCheck": true,
    "noEmit": true,
    "esModuleInterop": true,
    "jsx": "react",
    "baseUrl": "./",
    "paths": {
      "@@/*": [
        ".dumi/tmp/*"
      ],
      "@qx/common": [
        "src"
      ],
      "@qx/common/*": [
        "src/*",
        "*"
      ],
      "@qx/*": [
        "./*/"
      ]
    }
  },
  "include": [
    ".dumirc.ts",
    "src/**/*",
    "typings.d.ts"
  ]
}