Rollup-plugin-typescript2: لا يمكن العثور على الوحدة النمطية "tslib" عند الاستيراد من دليل شقيق

تم إنشاؤها على ١١ يونيو ٢٠٢٠  ·  4تعليقات  ·  مصدر: ezolenko/rollup-plugin-typescript2

ماذا يحدث ولماذا هو خطأ

هذا مشابه للإصدار رقم 12 ، و 214 ، و # 216 ، لكن لم تنجح أي من الحلول المذكورة هناك معي ولدي خطوات واضحة لإعادة إنتاجها ، لذا آمل أن يكون هذا الخطأ مفيدًا.

خطوات التكاثر:

  1. git clone https://github.com/birtles/rollup-ts-mono
  2. cd rollup-ts-mono/a
  3. yarn install
  4. yarn build

النتائج المتوقعة: يبني بنجاح.

النتائج الفعلية:

[!] (plugin rpt2) Error: ../common/func.ts:1:24 - error TS2354: This syntax requires an imported helper but module 'tslib' cannot be found.

1 export function func({ a }: { a: string }) {

لاحظ أن:

  • npx tsc يعمل
  • إعداد أكثر تعقيدًا مع عمل ts-jest (على سبيل المثال ، yarn test يعمل لكن npx rollup -c ينتج الخطأ أعلاه)
  • لا يتضمن هذا الإعداد عمدًا node-resolve وما إلى ذلك لأنني لا أريد أن يتم تجميع التبعيات الخارجية في النتيجة. (هذا لبناء وظيفة AWS lambda حيث سيتم تحميل node_modules مع الملف المترجم والحفاظ على حجم الملف المترجم يجعل تصحيح الأخطاء أسهل.)
  • بنية الدليل غير مرنة تمامًا نظرًا لأن كل هذا يتم تشغيله من خلال sam-cli
  • سارت الأمور على ما يرام حتى بدأت في استخدام صيغة خيالية في ملف common/func.ts
  • لا يبدو أن إضافة الجذر tsconfig.json والتمديد منه يحدث فرقًا
  • يمكن أن يساعد التغيير والتبديل في paths و baseUrl وفقًا لهذا التعليق ، ولكن يبدو أنه يكسر أشياء أخرى.

بيئة

العقدة v12.14.0 تعمل على Ubuntu 18.04 ضمن WSL 1.

إصدارات

  • مطبوعة: 3.9.5
  • تراكم: 2.15.0
  • Rollup-plugin-typescript2: 0.27.1

rollup.config.js

import typescript from 'rollup-plugin-typescript2';

export default {
  input: './index.ts',
  output: {
    file: 'index.js',
    format: 'cjs',
  },
  plugins: [
    typescript({
      include: ['*.ts', '../common/*.ts'],
      verbosity: 3,
    }),
  ],
};

tsconfig.json

{
  "compilerOptions": {
    "alwaysStrict": true,
    "allowSyntheticDefaultImports": true,
    "esModuleInterop": true,
    "module": "ESNext",
    "moduleResolution": "node",
    "noImplicitAny": true,
    "noImplicitReturns": true,
    "noUnusedLocals": true,
    "pretty": true,
    "strictNullChecks": true,
    "target": "es2018"
  },
  "include": [
    "./*.ts",
    "../common/*.ts"
  ],
  "exclude": [
    "node_modules"
  ]
}

package.json

{
  "name": "a",
  "version": "1.0.0",
  "main": "index.ts",
  "license": "MIT",
  "scripts": {
    "build": "rollup -c"
  },
  "devDependencies": {
    "rollup": "^2.15.0",
    "rollup-plugin-typescript2": "^0.27.1",
    "typescript": "^3.9.5"
  }
}

إخراج البرنامج المساعد مع الإسهاب 3

yarn run v1.22.4
$ rollup -c

./index.ts → index.js...
rpt2: built-in options overrides: {
    "noEmitHelpers": false,
    "importHelpers": true,
    "noResolve": false,
    "noEmit": false,
    "inlineSourceMap": false,
    "outDir": "/c/Users/Brian/rollup-ts-mono/a/node_modules/.cache/rollup-plugin-typescript2/placeholder",
    "moduleResolution": 2,
    "allowNonTsExtensions": true
}
rpt2: parsed tsconfig: {
    "options": {
        "alwaysStrict": true,
        "allowSyntheticDefaultImports": true,
        "esModuleInterop": true,
        "module": 99,
        "moduleResolution": 2,
        "noImplicitAny": true,
        "noImplicitReturns": true,
        "noUnusedLocals": true,
        "pretty": true,
        "strictNullChecks": true,
        "target": 5,
        "configFilePath": "/c/Users/Brian/rollup-ts-mono/a/tsconfig.json",
        "noEmitHelpers": false,
        "importHelpers": true,
        "noResolve": false,
        "noEmit": false,
        "inlineSourceMap": false,
        "outDir": "/c/Users/Brian/rollup-ts-mono/a/node_modules/.cache/rollup-plugin-typescript2/placeholder",
        "allowNonTsExtensions": true
    },
    "fileNames": [
        "/c/Users/Brian/rollup-ts-mono/a/index.ts",
        "/c/Users/Brian/rollup-ts-mono/common/func.ts"
    ],
    "typeAcquisition": {
        "enable": false,
        "include": [],
        "exclude": []
    },
    "raw": {
        "compilerOptions": {
            "alwaysStrict": true,
            "allowSyntheticDefaultImports": true,
            "esModuleInterop": true,
            "module": "ESNext",
            "moduleResolution": "node",
            "noImplicitAny": true,
            "noImplicitReturns": true,
            "noUnusedLocals": true,
            "pretty": true,
            "strictNullChecks": true,
            "target": "es2018"
        },
        "include": [
            "./*.ts",
            "../common/*.ts"
        ],
        "exclude": [
            "node_modules"
        ],
        "compileOnSave": false
    },
    "errors": [],
    "wildcardDirectories": {
        "/c/Users/Brian/rollup-ts-mono/a": 0,
        "/c/Users/Brian/rollup-ts-mono/common": 0
    },
    "compileOnSave": false,
    "configFileSpecs": {
        "includeSpecs": [
            "./*.ts",
            "../common/*.ts"
        ],
        "excludeSpecs": [
            "node_modules"
        ],
        "validatedIncludeSpecs": [
            "./*.ts",
            "../common/*.ts"
        ],
        "validatedExcludeSpecs": [
            "node_modules"
        ],
        "wildcardDirectories": {
            "/c/Users/Brian/rollup-ts-mono/a": 0,
            "/c/Users/Brian/rollup-ts-mono/common": 0
        }
    }
}
rpt2: typescript version: 3.9.5
rpt2: tslib version: 1.11.2
rpt2: rollup version: 2.15.0
rpt2: rollup-plugin-typescript2 version: 0.27.1
rpt2: plugin options:
{
    "include": [
        "*.ts",
        "../common/*.ts"
    ],
    "verbosity": 3,
    "check": true,
    "clean": false,
    "cacheRoot": "/c/Users/Brian/rollup-ts-mono/a/node_modules/.cache/rollup-plugin-typescript2",
    "exclude": [
        "*.d.ts",
        "**/*.d.ts"
    ],
    "abortOnError": true,
    "rollupCommonJSResolveHack": false,
    "useTsconfigDeclarationDir": false,
    "tsconfigOverride": {},
    "transformers": [],
    "tsconfigDefaults": {},
    "objectHashIgnoreUnknownHack": false,
    "cwd": "/c/Users/Brian/rollup-ts-mono/a",
    "typescript": "version 3.9.5"
}
rpt2: rollup config:
{
    "external": [],
    "input": "./index.ts",
    "plugins": [
        {
            "name": "rpt2"
        },
        {
            "name": "stdin"
        }
    ],
    "output": [
        {
            "file": "index.js",
            "format": "cjs",
            "plugins": []
        }
    ]
}
rpt2: tsconfig path: /c/Users/Brian/rollup-ts-mono/a/tsconfig.json
rpt2: included:
[
    "*.ts",
    "../common/*.ts"
]
rpt2: excluded:
[
    "*.d.ts",
    "**/*.d.ts"
]
rpt2: Ambient types:
rpt2:     /c/Users/Brian/rollup-ts-mono/a/node_modules/@types/estree/index.d.ts
rpt2: ambient types changed, redoing all semantic diagnostics
rpt2: transpiling '/c/Users/Brian/rollup-ts-mono/a/index.ts'
rpt2:     cache: '/c/Users/Brian/rollup-ts-mono/a/node_modules/.cache/rollup-plugin-typescript2/rpt2_86652b882e81b012e213895c8bb1ed1d48aba191/code/cache/42dd2afd58080ad46e2f26195c4b76ce6ba22e63'
rpt2:     cache miss
rpt2:     cache: '/c/Users/Brian/rollup-ts-mono/a/node_modules/.cache/rollup-plugin-typescript2/rpt2_86652b882e81b012e213895c8bb1ed1d48aba191/syntacticDiagnostics/cache/42dd2afd58080ad46e2f26195c4b76ce6ba22e63'
rpt2:     cache miss
rpt2:     cache: '/c/Users/Brian/rollup-ts-mono/a/node_modules/.cache/rollup-plugin-typescript2/rpt2_86652b882e81b012e213895c8bb1ed1d48aba191/semanticDiagnostics/cache/42dd2afd58080ad46e2f26195c4b76ce6ba22e63'
rpt2:     cache miss
rpt2: dependency '/c/Users/Brian/rollup-ts-mono/common/func.ts'
rpt2:     imported by '/c/Users/Brian/rollup-ts-mono/a/index.ts'
rpt2: resolving '../common/func' imported by '/c/Users/Brian/rollup-ts-mono/a/index.ts'
rpt2:     to '/c/Users/Brian/rollup-ts-mono/common/func.ts'
rpt2: transpiling '/c/Users/Brian/rollup-ts-mono/common/func.ts'
rpt2:     cache: '/c/Users/Brian/rollup-ts-mono/a/node_modules/.cache/rollup-plugin-typescript2/rpt2_86652b882e81b012e213895c8bb1ed1d48aba191/code/cache/154c4f09b6a8aebbd439964a86673337ca5a9381'
rpt2:     cache miss
rpt2:     cache: '/c/Users/Brian/rollup-ts-mono/a/node_modules/.cache/rollup-plugin-typescript2/rpt2_86652b882e81b012e213895c8bb1ed1d48aba191/syntacticDiagnostics/cache/154c4f09b6a8aebbd439964a86673337ca5a9381'
rpt2:     cache miss
rpt2:     cache: '/c/Users/Brian/rollup-ts-mono/a/node_modules/.cache/rollup-plugin-typescript2/rpt2_86652b882e81b012e213895c8bb1ed1d48aba191/semanticDiagnostics/cache/154c4f09b6a8aebbd439964a86673337ca5a9381'
rpt2:     cache miss
[!] (plugin rpt2) Error: ../common/func.ts:1:24 - error TS2354: This syntax requires an imported helper but module 'tslib' cannot be found.

1 export function func({ a }: { a: string }) {
                         ~

../common/func.ts
Error: ../common/func.ts:1:24 - error TS2354: This syntax requires an imported helper but module 'tslib' cannot be found.

1 export function func({ a }: { a: string }) {
                         ~

    at error (/c/Users/Brian/rollup-ts-mono/a/node_modules/rollup/dist/shared/rollup.js:213:30)
    at throwPluginError (/c/Users/Brian/rollup-ts-mono/a/node_modules/rollup/dist/shared/rollup.js:17117:12)
    at Object.error (/c/Users/Brian/rollup-ts-mono/a/node_modules/rollup/dist/shared/rollup.js:17911:24)
    at Object.error (/c/Users/Brian/rollup-ts-mono/a/node_modules/rollup/dist/shared/rollup.js:17290:38)
    at RollupContext.error (/c/Users/Brian/rollup-ts-mono/a/node_modules/rollup-plugin-typescript2/dist/rollup-plugin-typescript2.cjs.js:17195:30)
    at /c/Users/Brian/rollup-ts-mono/a/node_modules/rollup-plugin-typescript2/dist/rollup-plugin-typescript2.cjs.js:24992:19
    at arrayEach (/c/Users/Brian/rollup-ts-mono/a/node_modules/rollup-plugin-typescript2/dist/rollup-plugin-typescript2.cjs.js:535:11)
    at forEach (/c/Users/Brian/rollup-ts-mono/a/node_modules/rollup-plugin-typescript2/dist/rollup-plugin-typescript2.cjs.js:9361:14)
    at printDiagnostics (/c/Users/Brian/rollup-ts-mono/a/node_modules/rollup-plugin-typescript2/dist/rollup-plugin-typescript2.cjs.js:24968:5)
    at Object.transform (/c/Users/Brian/rollup-ts-mono/a/node_modules/rollup-plugin-typescript2/dist/rollup-plugin-typescript2.cjs.js:29071:17)

error Command failed with exit code 1.
info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command.
bug workaround

ال 4 كومينتر

  • سارت الأمور على ما يرام حتى بدأت في استخدام صيغة خيالية في ملف common/func.ts

فقط لتوضيح ما أعنيه بهذا ، إذا قمت بتغيير:

export function func({ a }: { a: string }) {
  console.log(`Hi ${a}`);
}

ل:

export function func(a: string) {
  console.log(`Hi ${a}`);
}

كل شيء يعمل على النحو المنشود.

FWIW ، أعتقد أنني قد عملت على حل هذا الأمر عن طريق إضافة package.json إلى common ، إضافة tslib كتبعية هناك ، وإضافة خطوة التثبيت المسبق إلى كل من أدلة الأشقاء لجعلها تعمل npm install في common إذا كانت موجودة (لأنها لن تعمل عند أقل من sam build ).

أعتقد أن هذا هو نفس السبب وراء قيام برنامج تضمين مجموعة التحديثات الخاصة بي بإلقاء الخطأ نفسه عندما قمت بتغيير tslib من تبعية الأقران إلى التبعية. للملاحظة الجانبية ، أنا لا أستخدم هذا البرنامج المساعد. 😅 كان هذا هو المكون الإضافي الرسمي.

بادئ ذي بدء ، يا له من مشروع عظيم! يجعل بناء مكتبات TypeScript أسهل بكثير!
نحن نستخدم Rollup وهذا البرنامج المساعد في مشروعنا https://github.com/TelestionTeam/telestion-client وبعد الإعداد الأولي كان يعمل بشكل لا تشوبه شائبة.

بعد ترقية Depabot (https://github.com/TelestionTeam/telestion-client/pull/344) لـ TypeScript v4.2 ، توقف المكون الإضافي عن العمل مع tslib غير موجود أو لم يتم تصدير بعض الأجزاء (على سبيل المثال __spreadArray ).
من المهم أن نذكر أن مشروعنا هو monorepo لذا فإن التعقيد يزداد أكثر وقد تكون هناك أجزاء أخرى يمكن أن تسبب هذه المشكلة.
لتجميع الحزم ، نحتاج إلى استدعاء تراكمي في كل دليل حزمة.

لقد بحثت قليلاً في المشكلات والتبعيات ووجدت شيئًا مثيرًا للاهتمام:
بعد التثبيت ، تقوم npm بإلغاء تكرار الحزمة tslib فقط في إصدار سابق (بالنسبة لنا v1.14.1 ) وتثبيت الإصدار الأحدث (هنا v2.1.0 ) في node_modules مجلد
يمكنك التحقق من ذلك باستخدام الأمر npm ls tslib .
تبدو لنا مثل هذا:


إخراج npm ls tslib بدون تثبيت tslib بشكل صريح

[email protected] /path/to/project/telestion-client ├─┬ @storybook/[email protected] │ ├─┬ [email protected] │ │ └─┬ [email protected] │ │ └── [email protected] │ ├─┬ [email protected] │ │ └── [email protected] │ └─┬ [email protected] │ └─┬ [email protected] │ └── [email protected] deduped ├─┬ @types/[email protected] │ └─┬ [email protected] │ └── [email protected] ├─┬ @typescript-eslint/[email protected] │ └─┬ [email protected] │ └── [email protected] deduped ├─┬ @wuespace/[email protected] -> /path/to/project/telestion-client/packages/telestion-client-cli │ └─┬ [email protected] │ ├─┬ [email protected] │ │ └── [email protected] │ ├─┬ [email protected] │ │ ├── [email protected] │ │ └─┬ [email protected] │ │ └── [email protected] │ ├─┬ [email protected] │ │ ├── [email protected] │ │ └─┬ [email protected] │ │ └── [email protected] │ ├─┬ [email protected] │ │ └── [email protected] │ ├─┬ [email protected] │ │ └── [email protected] │ ├─┬ [email protected] │ │ ├─┬ [email protected] │ │ │ └── [email protected] │ │ └── [email protected] │ ├─┬ [email protected] │ │ └── [email protected] │ ├─┬ [email protected] │ │ └── [email protected] │ ├─┬ [email protected] │ │ └── [email protected] │ ├─┬ [email protected] │ │ └── [email protected] │ ├─┬ [email protected] │ │ └── [email protected] │ └── [email protected] └─┬ [email protected] └── [email protected]

كما قمت بالتحقق يدويًا من ذلك والإصدارات المثبتة هي:

| المسار | الإصدار |
| --- | --- |
| project_path/node_modules/tslib | v1.14.0 |
| project_path/node_modules/rollup-plugin-typescript2/node_modules/tslib | v2.1.0 |

بعد توضيح تثبيت tslib عبر npm i -D tslib ، اختفى إلغاء تكرار الإصدار الأقدم ووجدت النسخة "العاملة" مباشرة في node_modules من المشروع:


ناتج npm ls tslib مع tslib مثبت بشكل صريح

[email protected] /path/to/project/telestion-client ├─┬ @storybook/[email protected] │ ├─┬ [email protected] │ │ └─┬ [email protected] │ │ └── [email protected] │ ├─┬ [email protected] │ │ └── [email protected] │ └─┬ [email protected] │ └─┬ [email protected] │ └── [email protected] ├─┬ @types/[email protected] │ └─┬ [email protected] │ └── [email protected] ├─┬ @typescript-eslint/[email protected] │ └─┬ [email protected] │ └── [email protected] ├─┬ @wuespace/[email protected] -> /path/to/project/telestion-client/packages/telestion-client-cli │ └─┬ [email protected] │ ├─┬ [email protected] │ │ └── [email protected] │ ├─┬ [email protected] │ │ ├── [email protected] │ │ └─┬ [email protected] │ │ └── [email protected] │ ├─┬ [email protected] │ │ ├── [email protected] │ │ └─┬ [email protected] │ │ └── [email protected] │ ├─┬ [email protected] │ │ └── [email protected] │ ├─┬ [email protected] │ │ └── [email protected] │ ├─┬ [email protected] │ │ ├─┬ [email protected] │ │ │ └── [email protected] │ │ └── [email protected] │ ├─┬ [email protected] │ │ └── [email protected] │ ├─┬ [email protected] │ │ └── [email protected] │ ├─┬ [email protected] │ │ └── [email protected] │ ├─┬ [email protected] │ │ └── [email protected] │ ├─┬ [email protected] │ │ └── [email protected] │ └── [email protected] ├─┬ [email protected] │ └── [email protected] └── [email protected]

والمشروع transpiles مرة أخرى بنجاح.

أعتقد أن هناك خطأ في node_modules وليس المثبت في node_modules للمثبت صفقة.
لسوء الحظ ، لست على دراية بقاعدة التعليمات البرمجية لكلا المشروعين ، لذا فهي مجرد تخمين.

أي أفكار حيث يمكن أن يحدث هذا؟

للإشارة فقط ، ملفات التكوين وسجلات التشغيل لدينا:


package.json

json { "name": "@wuespace/telestion-client-core", "description": "The core components of the Telestion Client", "license": "MIT", "version": "0.10.0", "homepage": "https://github.com/TelestionTeam/telestion-client#readme", "main": "build/index.js", "module": "build/index.es.js", "types": "build/index.d.ts", "files": [ "build" ], "scripts": { "build": "rollup -c", "test": "echo \"Warning: No test script specified!\"", "prepublishOnly": "npm run build", "clean": "rimraf build types" }, "repository": { "type": "git", "url": "git+https://github.com/TelestionTeam/telestion-client.git", "directory": "packages/telestion-client-core" }, "bugs": { "url": "https://github.com/TelestionTeam/telestion-client/issues" }, "author": { "name": "wuespace", "email": "[email protected]", "url": "https://www.wuespace.de/" }, "dependencies": { "@fliegwerk/logsemts": "^0.4.0-0", "@wuespace/telestion-client-prop-types": "file:../telestion-client-prop-types", "@wuespace/telestion-client-types": "file:../telestion-client-types", "@wuespace/vertx-event-bus": "file:../vertx-event-bus", "prop-types": "^15.7.2", "zustand": "^3.2.0" }, "peerDependencies": { "@types/react": "^17.0.0", "react": "^17.0.1", "react-router-dom": "^5.2.0" }, "publishConfig": { "access": "public" } }


rollup.config.js

شبيبة
استيراد {الانضمام} من "المسار" ؛
استيراد peerDepsExternal من "rollup-plugin-peer-deps-external" ؛
استيراد صورة من "@ rollup / plugin-image" ؛
استيراد Commonjs من "@ rollup / plugin-commonjs" ؛
استيراد postcss من "rollup-plugin-postcss" ؛
استيراد dts من "rollup-plugin-dts" ؛
استيراد حل من "@ rollup / plugin-node-solution" ؛
استيراد نسخة مطبوعة من "rollup-plugin-typescript2" ؛
ترخيص الاستيراد من "ترخيص البرنامج الإضافي التراكمي" ؛
استيراد {terser} من "rollup-plugin-terser" ؛

const packageJson = تتطلب ('./ package.json') ؛
const buildTsConfig = تتطلب ('./ tsconfig.build.json') ؛

const defaultResolvePlugin = حل ({preferBuiltins: true}) ؛
const defaultTypeScriptPlugin = typecript ({
tsconfig: "tsconfig.build.json"،
useTsconfigDeclusionDir: صحيح
}) ؛
const defaultTerserPlugin = terser ({
صيغة: {
التعليقات: "بعض"
} ،
keep_classnames: صحيح ،
keep_fnames: صحيح
}) ؛
const defaultLicensePlugin = ترخيص ({
خريطة المصدر: صحيح ،
cwd: process.cwd ()،
بانر: {
commentStyle: "تم التجاهل" ،
المحتوى: {
ملف: انضم (__ dirname، 'LICENSE')،
الترميز: "utf-8"
}
}
}) ؛

حزمة monorepoPackages = [
"@ wuespace / mock-server" ،
"@ wuespace / telestion-client-cli" ،
"@ wuespace / telestion-client-common" ،
"@ wuespace / telestion-client-core" ،
"@ wuespace / telestion-client-prop-types" ،
"@ wuespace / telestion-client-template" ،
"@ wuespace / telestion-client-type" ،
"@ wuespace / vertx-event-bus"
] ؛

تكوين const = [
{
الإدخال: Join (process.cwd ()، 'src'، 'index.ts'،
انتاج: [
{
ملف: packageJson.main ،
التنسيق: "cjs" ،
خريطة المصدر: صحيح
} ،
{
ملف: packageJson.module ،
التنسيق: "esm" ،
خريطة المصدر: صحيح
}
] ،
المكونات الإضافية: [
peerDepsExternal () ،
صورة()،
الافتراضي
Commonjs () ،
defaultTypeScriptPlugin ،
postcss () ،
الافتراضي
الافتراضي
] ،
خارجي: [
... Object.keys (packageJson.dependencies || {})،
... monorepoPackages ،
"zustand / ضحلة"
]
} ،
{
الإدخال: buildTsConfig.compilerOptions.declusionDir ،
انتاج: [
{
ملف: packageJson.types ،
التنسيق: 'es'
}
] ،
المكونات الإضافية: [dts ()، defaultLicensePlugin]
}
] ؛

تصدير التكوين الافتراضي ؛
""


tsconfig.build.json

json5 { "extends": "../../tsconfig.json", "compilerOptions": { /* Basic Options */ "target": "es5", "module": "esnext", "lib": ["es6", "dom", "es2016", "es2017"], "declaration": true, "sourceMap": true, /* Strict Type-Checking Options */ "strict": true, /* Module Resolution Options */ "moduleResolution": "node", "allowSyntheticDefaultImports": true, "esModuleInterop": true, /* Advanced Options */ "skipLibCheck": true, "forceConsistentCasingInFileNames": true /* additional overwrites */ "declarationDir": "types", "declaration": true, // reset paths because build should use node_modules instead "paths": {}, "jsx": "react-jsx" }, "include": ["src", "typings.d.ts"], "exclude": [ "node_modules", "build", "types", "src/**/*.test.ts*", "src/**/*.spec.ts*", "src/**/*.stories.ts*" ] }


بناء سجل دون تثبيت tslib صراحة

""

@ wuespace / [email protected] build path / to / project / telestion-client / bundle / telestion-client-core
تراكمي -c

path / to / project / telestion-client / bundle / telestion-client-core / src / index.ts → build / index.js ، build / index.es.js ...
rpt2: تجاوز الخيارات المضمنة: {
"noEmitHelpers": خطأ ،
"importHelpers": صحيح ،
"noResolve": خطأ ،
"noEmit": خطأ ،
"inlineSourceMap": خطأ ،
"outDir": "path / to / project / telestion-client /pack / telestion-client-core / node_modules / .cache / rollup-plugin-typescript2 / placeholder"،
"moduleResolution": 2 ،
"allowNonTsExtensions": صحيح
}
rpt2: تحليل tsconfig: {
"والخيارات": {
"الهدف": 1 ،
"الوحدة": 99 ،
"allowJs": صحيح ،
"checkJs": صحيح ،
"noEmit": خطأ ،
"ResolutionJsonModule": صحيح ،
"صارم": صحيح ،
"moduleResolution": 2 ،
"baseUrl": "path / to / project / telestion-client / packs" ،
"allowSyntheticDefaultImports": صحيح ،
"esModuleInterop": صحيح ،
"مسارات": {}،
"skipLibCheck": صحيح ،
"forceConsistentCasingInFileNames": صحيح ،
"pathsBasePath": "path / to / project / telestion-client / base-configs" ،
"ليب": [
"lib.es2015.d.ts" ،
"lib.dom.d.ts" ،
"lib.es2016.d.ts" ،
"lib.es2017.d.ts"
] ،
"إعلان": صحيح ،
"sourceMap": صحيح ،
"jsx": 4 ،
"تصريح Dir": "path / to / project / telestion-client / bundle / telestion-client-core / أنواع" ،
"configFilePath": "path / to / project / telestion-client /pack / telestion-client-core / tsconfig.build.json"،
"noEmitHelpers": خطأ ،
"importHelpers": صحيح ،
"noResolve": خطأ ،
"inlineSourceMap": خطأ ،
"outDir": "path / to / project / telestion-client /pack / telestion-client-core / node_modules / .cache / rollup-plugin-typescript2 / placeholder" ،
"allowNonTsExtensions": صحيح
} ،
"أسماء الملفات": [
"path / to / project / telestion-client /pack / telestion-client-core / src / index.ts" ،
"path / to / project / telestion-client / bundle / telestion-client-core / src / element / index.ts" ،
"path / to / project / telestion-client / bundle / telestion-client-core / src / مكونات / telestion-client.tsx" ،
"path / to / project / telestion-client / bundle / telestion-client-core / src / مكونات / صفحات / index.ts" ،
"path / to / project / telestion-client / bundle / telestion-client-core / src / element / pages / pages.tsx" ،
"path / to / project / telestion-client / bundle / telestion-client-core / src / element / pages / lib / index.ts" ،
"مسار / إلى / مشروع / telestion-client / باقات / telestion-client-core / src / مكونات / صفحات / lib / is-valid-child.ts" ،
"path / to / project / telestion-client / bundle / telestion-client-core / src / مكونات / صفحات / lib / parse-routing.ts" ،
"path / to / project / telestion-client / bundle / telestion-client-core / src / مكونات / صفحات / مسارات / auth-route.tsx" ،
"path / to / project / telestion-client / bundle / telestion-client-core / src / مكونات / صفحات / مسارات / index.ts" ،
"path / to / project / telestion-client / مجموعات / telestion-client-core / src / مكونات / صفحات / مسارات / prop-types.ts"
"path / to / project / telestion-client / bundle / telestion-client-core / src / مكونات / صفحات / مسارات / un-auth-route.tsx" ،
"path / to / project / telestion-client / bundle / telestion-client-core / src / مكونات / تفضيلات / group-Context.tsx" ،
"path / to / project / telestion-client / packs / telestion-client-core / src / element / preferences / group.tsx" ،
"path / to / project / telestion-client / bundle / telestion-client-core / src / element / preferences / index.ts" ،
"path / to / project / telestion-client / bundle / telestion-client-core / src / element / preferences / preferences.tsx" ،
"path / to / project / telestion-client / bundle / telestion-client-core / src / مكونات / تفضيلات / متغير .tsx" ،
"path / to / project / telestion-client / bundle / telestion-client-core / src / element / storybook / title-user.tsx" ،
"path / to / project / telestion-client / bundle / telestion-client-core / src / hooks / index.ts" ،
"path / to / project / telestion-client / bundle / telestion-client-core / src / hooks / use-logger.ts" ،
"path / to / project / telestion-client / bundle / telestion-client-core / src / hooks / abstractions / index.ts" ،
"path / to / project / telestion-client / bundle / telestion-client-core / src / hooks / abstractions / event-bus-abstractions / index.ts" ،
"path / to / project / telestion-client / bundle / telestion-client-core / src / hooks / abstractions / event-bus-abstractions / use-radio.ts" ،
"path / to / project / telestion-client / packs / telestion-client-core / src / hooks / abstractions / event-bus-abstractions / use-channel-latest.ts" ،
"path / to / project / telestion-client / bundle / telestion-client-core / src / hooks / abstractions / event-bus-abstractions / use-channel.ts" ،
"path / to / project / telestion-client / bundle / telestion-client-core / src / hooks / abstractions / event-bus-abstractions / use-request.model.ts" ،
"path / to / project / telestion-client / bundle / telestion-client-core / src / hooks / abstractions / event-bus-abstractions / use-request.ts" ،
"path / to / project / telestion-client / bundle / telestion-client-core / src / hooks / abstractions / preferences-abstractions / index.ts" ،
"path / to / project / telestion-client / bundle / telestion-client-core / src / hooks / abstractions / preferences-abstractions / use-pref-value.ts" ،
"path / to / project / telestion-client / bundle / telestion-client-core / src / hooks / abstractions / preferences-abstractions / use-title.ts" ،
"path / to / project / telestion-client / bundle / telestion-client-core / src / hooks / مديرو / index.ts" ،
"path / to / project / telestion-client / bundle / telestion-client-core / src / hooks / مديرو / use-event-bus-manager.model.ts" ،
"path / to / project / telestion-client / packs / telestion-client-core / src / hooks / manager / use-event-bus-manager.ts" ،
"path / to / project / telestion-client / packs / telestion-client-core / src / hooks / store / index.ts" ،
"path / to / project / telestion-client / bundle / telestion-client-core / src / hooks / store / use-auth.model.ts" ،
"path / to / project / telestion-client / bundle / telestion-client-core / src / hooks / store / use-auth.ts" ،
"path / to / project / telestion-client / packs / telestion-client-core / src / hooks / store / use-event-bus.model.ts" ،
"path / to / project / telestion-client / packs / telestion-client-core / src / hooks / store / use-event-bus.ts" ،
"path / to / project / telestion-client / bundle / telestion-client-core / src / hooks / Stores / use-notifications.model.ts" ،
"path / to / project / telestion-client / bundle / telestion-client-core / src / hooks / store / use-notifications.ts" ،
"path / to / project / telestion-client / bundle / telestion-client-core / src / hooks / store / use-preferences.model.ts" ،
"path / to / project / telestion-client / bundle / telestion-client-core / src / hooks / store / use-preferences.ts" ،
"path / to / project / telestion-client / bundle / telestion-client-core / src / lib / core-utils.ts" ،
"path / to / project / telestion-client / bundle / telestion-client-core / src / lib / index.ts" ،
"path / to / project / telestion-client / bundle / telestion-client-core / src / lib / logger.ts" ،
"path / to / project / telestion-client / bundle / telestion-client-core / src / lib / auth / fake-auth.ts" ،
"path / to / project / telestion-client / bundle / telestion-client-core / src / lib / auth / index.ts" ،
"path / to / project / telestion-client /pack / telestion-client-core / typings.d.ts"
] ،
"typeAcquisition": {
"تمكين": خطأ ،
"يشمل": []،
"استبعاد": []
} ،
"الخام": {
"يمتد": "../../base-configs/tsconfig.react.build.json" ،
"compilerOptions": {
"دليل الإقرار": "أنواع"
} ،
"يشمل": [
"src"،
"typings.d.ts"
] ،
"استبعاد": [
"node_modules"،
"يبني"،
"أنواع"،
"src / / .test.ts " ،"src / / .spec.ts " ،
"src / / .stories.ts "] ،"compileOnSave": خطأ} ،"أخطاء": [] ،"wildcardDirectories": {"path / to / project / telestion-client / packs / telestion-client-core / src": 1} ،"compileOnSave": خطأ}rpt2: نسخة مطبوعة: 4.2.2rpt2: إصدار tslib: 2.1.0rpt2: الإصدار التراكمي: 2.39.0rpt2: الإصدار التراكمي-plugin-typescript2: 0.30.0rpt2: خيارات البرنامج المساعد:{"tsconfig": "tsconfig.build.json"،"useTsconfigDeclusionDir": صحيح ،"الإسهاب": 3 ،"تحقق": صحيح ،"نظيف": خطأ ،"cacheRoot": "path / to / project / telestion-client /pack / telestion-client-core / node_modules / .cache / rollup-plugin-typescript2"،"يشمل": [" .ts + (| x)" ،" /.ts+ (|x)"
] ،
"استبعاد": [
" .d.ts"،" / .d.ts"
] ،
"abortOnError": صحيح ،
"rollupCommonJSResolveHack": خطأ ،
"tsconfigOverride": {}،
"محولات": [] ،
"tsconfigDefaults": {}،
"objectHashIgnoreUnknownHack": خطأ ،
"cwd": "path / to / project / telestion-client / bundle / telestion-client-core" ،
"مطبوعة": "الإصدار 4.2.2"
}
rpt2: التكوين التراكمي:
{
"المدخلات": "path / to / project / telestion-client /pack / telestion-client-core / src / index.ts" ،
"المكونات الإضافية": [
{
"الاسم": "نظير- قسم- خارجي"
} ،
{
"الاسم": "الصورة"
} ،
{
"الاسم": "حل العقدة"
} ،
{
"الاسم": "commonjs"
} ،
{
"الاسم": "rpt2"
} ،
{
"الاسم": "postcss"
} ،
{
"الاسم": "terser"
} ،
{
"الاسم": "ترخيص البرنامج الإضافي التراكمي"
} ،
{
"الاسم": "stdin"
}
] ،
"انتاج": [
{
"ملف": "build / index.js" ،
"تنسيق": "cjs"،
"المكونات الإضافية": [] ،
"sourcemap": صحيح
} ،
{
"ملف": "build / index.es.js" ،
"format": "esm"،
"المكونات الإضافية": [] ،
"sourcemap": صحيح
}
]
}
rpt2: مسار tsconfig: المسار / إلى / المشروع / العميل التليفزيوني / الحزم / telestion-client-core / tsconfig.build.json
rpt2: متضمن:
[
" .ts + (| x)" ،"/ .ts + (| x)"
]
rpt2: مستبعد:
[
" .d.ts"،" / .d.ts"
]
rpt2: [34m الأنواع المحيطة: [39m
rpt2: المسار / إلى / المشروع / telestion- العميل / الحزم / telestion-client-core / typings.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/anymatch/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/babel__core/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/babel__generator/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/babel__template/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/babel__traverse/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/braces/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/cli-color/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/clui/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/debug/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/ejs/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/estree/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/fs-extra/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/glob/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/glob-base/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/graceful-fs/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/hast/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/history/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/html-minifier-terser/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/inquirer/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/is-function/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/istanbul-lib-coverage/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/istanbul-lib-report/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/istanbul-reports/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/jest/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/json-schema/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/json5/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/lodash/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/markdown-to-jsx/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/mdast/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/micromatch/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/minimatch/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/minimist/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/node/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/node-fetch/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/normalize-package-data/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/npmlog/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/overlayscrollbars/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/parse-json/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/parse5/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/prettier/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/prop-types/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/q/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/qs/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/reach__router/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/react/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/react-color/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/react-dom/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/react-router/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/react-router-dom/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/react-syntax-highlighter/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/react-test-renderer/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/reactcss/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/resolve/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/shelljs/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/sockjs/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/source-list-map/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/stack-utils/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/tapable/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/through/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/uglify-js/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/unist/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/webpack/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/webpack-env/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/webpack-sources/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/yargs/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/yargs-parser/index.d.ts
rpt2: [34mtranspiling [39m 'path / to / project / telestion-client / bundle / telestion-client-core / src / index.ts'
rpt2: ذاكرة التخزين المؤقت: 'path / to / project / telestion-client / bundle / telestion-client-core / node_modules / .cache / rollup-plugin-typescript2 / rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42 / code / cache / f1e67fe89b62b940'
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: ذاكرة التخزين المؤقت: 'path / to / project / telestion-client /pack / telestion-client-core / node_modules / .cache / rollup-plugin-typescript2 / rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42 / syntacticDiagnostics / cachef17540
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: ذاكرة التخزين المؤقت: 'path / to / project / telestion-client /pack / telestion-client-core / node_modules / .cache / rollup-plugin-typescript2 / rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42 / semanticDiagnostics / cache / f1e14940
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: [34 إعلانًا مُنشأًا [39 مترًا لـ "المسار / إلى / المشروع / العميل التليفزيوني / الحزم / telestion-client-core / src / index.ts"
rpt2: [34mdependency [39m 'path / to / project / telestion-client / packs / telestion-client-core / src / مكونات / index.ts)
rpt2: تم استيراده بواسطة "path / to / project / telestion-client / bundle / telestion-client-core / src / index.ts"
rpt2: [34mresolving [39m './components' مستوردة بواسطة 'path / to / project / telestion-client / bundle / telestion-client-core / src / index.ts'
rpt2: to 'path / to / project / telestion-client / packs / telestion-client-core / src / مكونات / index.ts'
rpt2: [34mdependency [39m 'path / to / project / telestion-client / packs / telestion-client-core / src / hooks / index.ts)
rpt2: تم استيراده بواسطة 'path / to / project / telestion-client / bundle / telestion-client-core / src / index.ts'
rpt2: [34mresolving [39m './hooks' مستوردة بواسطة 'path / to / project / telestion-client / bundle / telestion-client-core / src / index.ts'
rpt2: إلى 'path / to / project / telestion-client / packs / telestion-client-core / src / hooks / index.ts'
rpt2: [34mdependency [39m 'path / to / project / telestion-client / packs / telestion-client-core / src / lib / index.ts'
rpt2: تم استيراده بواسطة 'path / to / project / telestion-client / bundle / telestion-client-core / src / index.ts'
rpt2: [34mresolving [39m './lib' مستوردة بواسطة 'path / to / project / telestion-client / bundle / telestion-client-core / src / index.ts'
rpt2: إلى 'path / to / project / telestion-client / packs / telestion-client-core / src / lib / index.ts'
rpt2: [34mtranspiling [39m 'path / to / project / telestion-client / bundle / telestion-client-core / src / مكونات / index.ts'
rpt2: ذاكرة التخزين المؤقت: 'path / to / project / telestion-client / bundle / telestion-client-core / node_modules / .cache / rollup-plugin-typescript2 / rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42 / code / cache / 31ef7f0505f314370
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: ذاكرة التخزين المؤقت: 'path / to / project / telestion-client / bundle / telestion-client-core / node_modules / .cache / rollup-plugin-typescript2 / rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42 / syntacticDiagnefostics / cache / 31311360
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: ذاكرة التخزين المؤقت: 'path / to / project / telestion-client /pack / telestion-client-core / node_modules / .cache / rollup-plugin-typescript2 / rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42 / semanticDiagnostics / cache / 317cc32970
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: [34 إعلانًا مُنشأًا [39 مترًا لـ "مسار / إلى / مشروع / عميل telestion / حزم / telestion-client-core / src / مكونات / index.ts"
rpt2: [34mtranspiling [39m 'path / to / project / telestion-client / bundle / telestion-client-core / src / hooks / index.ts'
rpt2: cache: 'path / to / project / telestion-client /pack / telestion-client-core / node_modules / .cache / rollup-plugin-typescript2 / rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42 / code / cache / 27052ffcb105aefc4796
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: ذاكرة التخزين المؤقت: 'path / to / project / telestion-client /pack / telestion-client-core / node_modules / .cache / rollup-plugin-typescript2 / rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42 / syntacticDiagnostics / cache10579
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: ذاكرة التخزين المؤقت: 'path / to / project / telestion-client /pack / telestion-client-core / node_modules / .cache / rollup-plugin-typescript2 / rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42 / semanticDiagnostics / cache106ae / 2703ff52cable
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: [34 إعلانًا مُنشأًا [39 مترًا لـ "مسار / إلى / مشروع / عميل telestion / حزم / telestion-client-core / src / hooks / index.ts"
rpt2: [34mtranspiling [39m 'path / to / project / telestion-client / bundle / telestion-client-core / src / lib / index.ts'
rpt2: ذاكرة التخزين المؤقت: 'path / to / project / telestion-client / باقات / telestion-client-core / node_modules / .cache / rollup-plugin-typescript2 / rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42 / code / cache / 22a86813ec639629
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: ذاكرة التخزين المؤقت: 'path / to / project / telestion-client /pack / telestion-client-core / node_modules / .cache / rollup-plugin-typescript2 / rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42 / syntacticDiagnostics / cache / 22839
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: ذاكرة التخزين المؤقت: 'path / to / project / telestion-client /pack / telestion-client-core / node_modules / .cache / rollup-plugin-typescript2 / rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42 / semanticDiagnostics / cache063986847
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: [34 إعلانًا تم إنشاؤه [39 مترًا لـ "مسار / إلى / مشروع / عميل telestion / حزم / telestion-client-core / src / lib / index.ts"
rpt2: [34mdependency [39m 'path / to / project / telestion-client / packs / telestion-client-core / src / مكونات / telestion-client.tsx)
rpt2: تم استيراده بواسطة "path / to / project / telestion-client / bundle / telestion-client-core / src / مكونات / index.ts"
rpt2: [34mresolving [39m './telestion-client' مستوردة بواسطة 'path / to / project / telestion-client / bundle / telestion-client-core / src / مكونات / index.ts'
rpt2: إلى 'path / to / project / telestion-client / pack / telestion-client-core / src / مكونات / telestion-client.tsx'
rpt2: [34mdependency [39m 'path / to / project / telestion-client / packs / telestion-client-core / src / مكونات / صفحات / index.ts')
rpt2: تم استيراده بواسطة "path / to / project / telestion-client / bundle / telestion-client-core / src / مكونات / index.ts"
rpt2: [34mresolving [39m './pages' مستوردة بواسطة 'path / to / project / telestion-client / bundle / telestion-client-core / src / مكونات / index.ts'
rpt2: إلى 'path / to / project / telestion-client / packs / telestion-client-core / src / مكونات / صفحات / index.ts'
rpt2: [34mdependency [39m 'path / to / project / telestion-client / packs / telestion-client-core / src / مكونات / تفضيلات / index.ts')
rpt2: تم استيراده بواسطة "path / to / project / telestion-client / bundle / telestion-client-core / src / مكونات / index.ts"
rpt2: [34mresolving [39m './preferences' مستوردة بواسطة 'path / to / project / telestion-client / bundle / telestion-client-core / src / مكونات / index.ts'
rpt2: إلى "المسار / إلى / المشروع / العميل التليفزيوني / الحزم / telestion-client-core / src / المكونات / التفضيلات / index.ts"
rpt2: [34mdependency [39m 'path / to / project / telestion-client / packs / telestion-client-core / src / hooks / abstractions / index.ts')
rpt2: تم استيراده بواسطة "path / to / project / telestion-client / bundle / telestion-client-core / src / hooks / index.ts"
rpt2: [34mresolving [39m './abstractions' مستوردة بواسطة 'path / to / project / telestion-client / bundle / telestion-client-core / src / hooks / index.ts'
rpt2: to 'path / to / project / telestion-client / packs / telestion-client-core / src / hooks / abstractions / index.ts'
rpt2: [34mdependency [39m 'path / to / project / telestion-client / packs / telestion-client-core / src / hooks / مديرو / index.ts'
rpt2: تم استيراده بواسطة 'path / to / project / telestion-client / bundle / telestion-client-core / src / hooks / index.ts'
rpt2: [34mresolving [39m './managers' مستوردة بواسطة 'path / to / project / telestion-client / bundle / telestion-client-core / src / hooks / index.ts'
rpt2: إلى "المسار / إلى / المشروع / العميل التليفزيوني / الحزم / telestion-client-core / src / الخطافات / المديرين / index.ts"
rpt2: [34mdependency [39m 'path / to / project / telestion-client / packs / telestion-client-core / src / hooks / Stores / index.ts')
rpt2: تم استيراده بواسطة 'path / to / project / telestion-client / bundle / telestion-client-core / src / hooks / index.ts'
rpt2: [34mresolving [39m './stores' مستوردة بواسطة 'path / to / project / telestion-client / bundle / telestion-client-core / src / hooks / index.ts'
rpt2: إلى 'path / to / project / telestion-client / packs / telestion-client-core / src / hooks / store / index.ts'
rpt2: [34mdependency [39m 'path / to / project / telestion-client / packs / telestion-client-core / src / hooks / use-logger.ts')
rpt2: تم استيراده بواسطة "path / to / project / telestion-client / bundle / telestion-client-core / src / hooks / index.ts"
rpt2: [34mresolving [39m './use-logger' مستورد بواسطة 'path / to / project / telestion-client / bundle / telestion-client-core / src / hooks / index.ts'
rpt2: إلى 'path / to / project / telestion-client / packs / telestion-client-core / src / hooks / use-logger.ts'
rpt2: [34mdependency [39m 'path / to / project / telestion-client / packs / telestion-client-core / src / lib / logger.ts')
rpt2: تم استيراده بواسطة "path / to / project / telestion-client / bundle / telestion-client-core / src / lib / index.ts"
rpt2: [34mresolving [39m './logger' مستوردة بواسطة 'path / to / project / telestion-client / bundle / telestion-client-core / src / lib / index.ts'
rpt2: إلى "المسار / إلى / المشروع / العميل التليفزيوني / الحزم / telestion-client-core / src / lib / logger.ts"
rpt2: [34mtranspiling [39m 'path / to / project / telestion-client / packs / telestion-client-core / src / مكونات / telestion-client.tsx)
rpt2: ذاكرة التخزين المؤقت: 'path / to / project / telestion-client /pack / telestion-client-core / node_modules / .cache / rollup-plugin-typescript2 / rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42 / code / cache / d8557c683dbf543
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: ذاكرة التخزين المؤقت: 'path / to / project / telestion-client /pack / telestion-client-core / node_modules / .cache / rollup-plugin-typescript2 / rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42 / syntacticDiagnostics / cachedb9543
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: ذاكرة التخزين المؤقت: 'path / to / project / telestion-client /pack / telestion-client-core / node_modules / .cache / rollup-plugin-typescript2 / rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42 / semanticDiagnostics / cachedb / df5681
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: [إعلانات مُنشأة 34 [39 مترًا لـ "مسار / إلى / مشروع / عميل telestion / حزم / telestion-client-core / src / مكونات / telestion-client.tsx"
rpt2: [34mtranspiling [39m 'path / to / project / telestion-client / bundle / telestion-client-core / src / مكونات / صفحات / index.ts'
rpt2: ذاكرة التخزين المؤقت: 'path / to / project / telestion-client /pack / telestion-client-core / node_modules / .cache / rollup-plugin-typescript2 / rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42 / code / cache / 83046ead711b2184
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: ذاكرة التخزين المؤقت: 'path / to / project / telestion-client /pack / telestion-client-core / node_modules / .cache / rollup-plugin-typescript2 / rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42 / syntacticDiagnostics / cache / 81879
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: ذاكرة التخزين المؤقت: 'path / to / project / telestion-client / bundle / telestion-client-core / node_modules / .cache / rollup-plugin-typescript2 / rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42 / semanticDiagnostics / cache21184639
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: [34 إعلانًا مُنشأًا [39 مترًا لـ "مسار / إلى / مشروع / عميل telestion / حزم / telestion-client-core / src / مكونات / صفحات / index.ts"
rpt2: [34mtranspiling [39m 'path / to / project / telestion-client / packs / telestion-client-core / src / components / preferences / index.ts')
rpt2: ذاكرة التخزين المؤقت: 'path / to / project / telestion-client / bundle / telestion-client-core / node_modules / .cache / rollup-plugin-typescript2 / rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42 / code / cache / 95c0679b8caab25'
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: ذاكرة التخزين المؤقت: 'path / to / project / telestion-client / باقات / telestion-client-core / node_modules / .cache / rollup-plugin-typescript2 / rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42 / syntacticDiagnostics / cache10568
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: ذاكرة التخزين المؤقت: 'path / to / project / telestion-client / باقات / telestion-client-core / node_modules / .cache / rollup-plugin-typescript2 / rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42 / semanticDiagnostics / cache108c06731
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: [34 إعلانًا مُنشأًا [39 مترًا لـ "المسار / إلى / المشروع / العميل التليفزيوني / الحزم / telestion-client-core / src / المكونات / التفضيلات / index.ts"
rpt2: [34mtranspiling [39m 'path / to / project / telestion-client / packs / telestion-client-core / src / hooks / abstractions / index.ts')
rpt2: ذاكرة التخزين المؤقت: 'path / to / project / telestion-client /pack / telestion-client-core / node_modules / .cache / rollup-plugin-typescript2 / rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42 / code / cache / c1c168fb1232726'
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: ذاكرة التخزين المؤقت: 'path / to / project / telestion-client / bundle / telestion-client-core / node_modules / .cache / rollup-plugin-typescript2 / rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42 / syntacticDiagnostics16710621
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: ذاكرة التخزين المؤقت: 'path / to / project / telestion-client /pack / telestion-client-core / node_modules / .cache / rollup-plugin-typescript2 / rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42 / semanticDiagnostics / cache10712'
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: [34 إعلانًا مُنشأًا [39 مترًا لـ "مسار / إلى / مشروع / عميل telestion / حزم / telestion-client-core / src / hooks / abstractions / index.ts"
rpt2: [34mtranspiling [39m 'path / to / project / telestion-client / packs / telestion-client-core / src / hooks / مديرو / index.ts'
rpt2: ذاكرة التخزين المؤقت: 'path / to / project / telestion-client /pack / telestion-client-core / node_modules / .cache / rollup-plugin-typescript2 / rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42 / code / cache / 0d49cc08da6423'
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: ذاكرة التخزين المؤقت: 'path / to / project / telestion-client / باقات / telestion-client-core / node_modules / .cache / rollup-plugin-typescript2 / rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42 / syntacticDiagnostics1617846e / 041749
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: ذاكرة التخزين المؤقت: 'path / to / project / telestion-client / باقات / telestion-client-core / node_modules / .cache / rollup-plugin-typescript2 / rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42 / semanticDiagnostics / cache / 0d174946
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: [34 إعلانًا مُنشأًا [39 مترًا لـ "مسار / إلى / مشروع / عميل telestion / حزم / telestion-client-core / src / hooks / مديرو / index.ts"
rpt2: [34mtranspiling [39m 'path / to / project / telestion-client / packs / telestion-client-core / src / hooks / Stores / index.ts')
rpt2: ذاكرة التخزين المؤقت: 'path / to / project / telestion-client /pack / telestion-client-core / node_modules / .cache / rollup-plugin-typescript2 / rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42 / code / cache / b8e2f9eb3f97980
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: ذاكرة التخزين المؤقت: 'path / to / project / telestion-client /pack / telestion-client-core / node_modules / .cache / rollup-plugin-typescript2 / rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42 / syntacticDiagnostics / cache / b3f974
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: ذاكرة التخزين المؤقت: 'path / to / project / telestion-client /pack / telestion-client-core / node_modules / .cache / rollup-plugin-typescript2 / rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42 / semanticDiagnostics / cache / b3fe97622
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: [34 إعلانًا تم إنشاؤه [39 مترًا لـ "مسار / إلى / مشروع / عميل telestion / حزم / telestion-client-core / src / hooks / Stores / index.ts"
rpt2: [34mtranspiling [39m 'path / to / project / telestion-client / packs / telestion-client-core / src / hooks / use-logger.ts')
rpt2: cache: 'path / to / project / telestion-client /pack / telestion-client-core / node_modules / .cache / rollup-plugin-typescript2 / rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42 / code / cache / 9d64351f2a2a2c
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: ذاكرة التخزين المؤقت: 'path / to / project / telestion-client /pack / telestion-client-core / node_modules / .cache / rollup-plugin-typescript2 / rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42 / syntacticDiagnostics / cachef29056
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: ذاكرة التخزين المؤقت: 'path / to / project / telestion-client /pack / telestion-client-core / node_modules / .cache / rollup-plugin-typescript2 / rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42 / semanticDiagnostics / cache2d18560
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: [إعلانات مُنشأة 34 [39 مترًا لـ "مسار / إلى / مشروع / عميل telestion / حزم / telestion-client-core / src / hooks / use-logger.ts"
rpt2: [34mtranspiling [39m 'path / to / project / telestion-client / packs / telestion-client-core / src / lib / logger.ts'
rpt2: ذاكرة التخزين المؤقت: 'path / to / project / telestion-client / bundle / telestion-client-core / node_modules / .cache / rollup-plugin-typescript2 / rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42 / code / cache / 370e709ddb01ed29'
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: ذاكرة التخزين المؤقت: 'path / to / project / telestion-client /pack / telestion-client-core / node_modules / .cache / rollup-plugin-typescript2 / rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42 / syntacticDiagnostics / cachedb2 / 370340
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/semanticDiagnostics/cache/370e709ddb01edcf642dc3fa0740270b77abd297'
rpt2: [32m cache hit[39m
rpt2: [34mgenerated declarations[39m for 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/logger.ts'
rpt2: [34mdependency[39m 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/index.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/telestion-client.tsx'
rpt2: [34mresolving[39m '../hooks' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/telestion-client.tsx'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/index.ts'
rpt2: [34mdependency[39m 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/logger.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/use-logger.ts'
rpt2: [34mresolving[39m '../lib/logger' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/use-logger.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/logger.ts'
rpt2: [34mdependency[39m 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/pages.tsx'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/index.ts'
rpt2: [34mresolving[39m './pages' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/index.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/pages.tsx'
rpt2: [34mdependency[39m 'path/to/project/telestion-client/packages/telestion-client-core/src/components/preferences/preferences.tsx'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/preferences/index.ts'
rpt2: [34mresolving[39m './preferences' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/preferences/index.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/components/preferences/preferences.tsx'
rpt2: [34mdependency[39m 'path/to/project/telestion-client/packages/telestion-client-core/src/components/preferences/group.tsx'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/preferences/index.ts'
rpt2: [34mresolving[39m './group' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/preferences/index.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/components/preferences/group.tsx'
rpt2: [34mdependency[39m 'path/to/project/telestion-client/packages/telestion-client-core/src/components/preferences/variable.tsx'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/preferences/index.ts'
rpt2: [34mresolving[39m './variable' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/preferences/index.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/components/preferences/variable.tsx'
rpt2: [34mdependency[39m 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/index.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/index.ts'
rpt2: [34mresolving[39m './event-bus-abstractions' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/index.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/index.ts'
rpt2: [34mdependency[39m 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/preferences-abstractions/index.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/index.ts'
rpt2: [34mresolving[39m './preferences-abstractions' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/index.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/preferences-abstractions/index.ts'
rpt2: [34mdependency[39m 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/managers/use-event-bus-manager.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/managers/index.ts'
rpt2: [34mresolving[39m './use-event-bus-manager' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/managers/index.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/managers/use-event-bus-manager.ts'
rpt2: [34mdependency[39m 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/managers/use-event-bus-manager.model.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/managers/index.ts'
rpt2: [34mresolving[39m './use-event-bus-manager.model' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/managers/index.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/managers/use-event-bus-manager.model.ts'
rpt2: [34mdependency[39m 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-auth.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/index.ts'
rpt2: [34mresolving[39m './use-auth' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/index.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-auth.ts'
rpt2: [34mdependency[39m 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-event-bus.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/index.ts'
rpt2: [34mresolving[39m './use-event-bus' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/index.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-event-bus.ts'
rpt2: [34mdependency[39m 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-notifications.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/index.ts'
rpt2: [34mresolving[39m './use-notifications' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/index.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-notifications.ts'
rpt2: [34mdependency[39m 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-preferences.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/index.ts'
rpt2: [34mresolving[39m './use-preferences' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/index.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-preferences.ts'
rpt2: [34mdependency[39m 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-preferences.model.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/index.ts'
rpt2: [34mresolving[39m './use-preferences.model' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/index.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-preferences.model.ts'
rpt2: [34mdependency[39m 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-notification.model.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/index.ts'
rpt2: [34mresolving[39m './use-notification.model' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/index.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-notification.model.ts'
rpt2: [34mdependency[39m 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-event-bus.model.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/index.ts'
rpt2: [34mresolving[39m './use-event-bus.model' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/index.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-event-bus.model.ts'
rpt2: [34mdependency[39m 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-auth.model.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/index.ts'
rpt2: [34mresolving[39m './use-auth.model' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/index.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-auth.model.ts'
rpt2: [34mtranspiling[39m 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/pages.tsx'
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/code/cache/c4ca50833d590ac416ad50b76019cdd73d0f7a6e'
rpt2: [32m cache hit[39m
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/syntacticDiagnostics/cache/c4ca50833d590ac416ad50b76019cdd73d0f7a6e'
rpt2: [32m cache hit[39m
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/semanticDiagnostics/cache/c4ca50833d590ac416ad50b76019cdd73d0f7a6e'
rpt2: [32m cache hit[39m
rpt2: [34mgenerated declarations[39m for 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/pages.tsx'
rpt2: [34mtranspiling[39m 'path/to/project/telestion-client/packages/telestion-client-core/src/components/preferences/preferences.tsx'
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/code/cache/c054f4cd6971ae404e33c9f1343fb21d2c32290f'
rpt2: [32m cache hit[39m
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/syntacticDiagnostics/cache/c054f4cd6971ae404e33c9f1343fb21d2c32290f'
rpt2: [32m cache hit[39m
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/semanticDiagnostics/cache/c054f4cd6971ae404e33c9f1343fb21d2c32290f'
rpt2: [32m cache hit[39m
rpt2: [34mgenerated declarations[39m for 'path/to/project/telestion-client/packages/telestion-client-core/src/components/preferences/preferences.tsx'
rpt2: [34mtranspiling[39m 'path/to/project/telestion-client/packages/telestion-client-core/src/components/preferences/group.tsx'
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/code/cache/6d65236b5158417d87144ff9eb905d9407a35954'
rpt2: [32m cache hit[39m
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/syntacticDiagnostics/cache/6d65236b5158417d87144ff9eb905d9407a35954'
rpt2: [32m cache hit[39m
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/semanticDiagnostics/cache/6d65236b5158417d87144ff9eb905d9407a35954'
rpt2: [32m cache hit[39m
rpt2: [34mgenerated declarations[39m for 'path/to/project/telestion-client/packages/telestion-client-core/src/components/preferences/group.tsx'
rpt2: [34mtranspiling[39m 'path/to/project/telestion-client/packages/telestion-client-core/src/components/preferences/variable.tsx'
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/code/cache/58fce9f6524b8b8d82e42a6b19a3270c8030fd39'
rpt2: [32m cache hit[39m
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/syntacticDiagnostics/cache/58fce9f6524b8b8d82e42a6b19a3270c8030fd39'
rpt2: [32m cache hit[39m
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/semanticDiagnostics/cache/58fce9f6524b8b8d82e42a6b19a3270c8030fd39'
rpt2: [32m cache hit[39m
rpt2: [34mgenerated declarations[39m for 'path/to/project/telestion-client/packages/telestion-client-core/src/components/preferences/variable.tsx'
rpt2: [34mtranspiling[39m 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/index.ts'
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/code/cache/5ddc877026f387927e781c90861a1d7af1c9412b'
rpt2: [32m cache hit[39m
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/syntacticDiagnostics/cache/5ddc877026f387927e781c90861a1d7af1c9412b'
rpt2: [32m cache hit[39m
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/semanticDiagnostics/cache/5ddc877026f387927e781c90861a1d7af1c9412b'
rpt2: [32m cache hit[39m
rpt2: [34mgenerated declarations[39m for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/index.ts'
rpt2: [34mtranspiling[39m 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/preferences-abstractions/index.ts'
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/code/cache/f8ec43b86b71cd2d362aa0d0fec5328647e746f6'
rpt2: [32m cache hit[39m
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/syntacticDiagnostics/cache/f8ec43b86b71cd2d362aa0d0fec5328647e746f6'
rpt2: [32m cache hit[39m
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/semanticDiagnostics/cache/f8ec43b86b71cd2d362aa0d0fec5328647e746f6'
rpt2: [32m cache hit[39m
rpt2: [34mgenerated declarations[39m for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/preferences-abstractions/index.ts'
rpt2: [34mtranspiling[39m 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/managers/use-event-bus-manager.ts'
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/code/cache/d770d4be191431ac8214c11dae36c045135bf150'
rpt2: [32m cache hit[39m
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/syntacticDiagnostics/cache/d770d4be191431ac8214c11dae36c045135bf150'
rpt2: [32m cache hit[39m
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/semanticDiagnostics/cache/d770d4be191431ac8214c11dae36c045135bf150'
rpt2: [32m cache hit[39m
rpt2: [34mgenerated declarations[39m for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/managers/use-event-bus-manager.ts'
rpt2: [34mtranspiling[39m 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/managers/use-event-bus-manager.model.ts'
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/code/cache/5b9b102ff8e38ccc11b2e609331349a7044f2386'
rpt2: [32m cache hit[39m
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/syntacticDiagnostics/cache/5b9b102ff8e38ccc11b2e609331349a7044f2386'
rpt2: [32m cache hit[39m
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/semanticDiagnostics/cache/5b9b102ff8e38ccc11b2e609331349a7044f2386'
rpt2: [32m cache hit[39m
rpt2: [34mgenerated declarations[39m for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/managers/use-event-bus-manager.model.ts'
rpt2: [34mtranspiling[39m 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-auth.ts'
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/code/cache/880ab91ed2e784215a083f47ac4ce8d3af9af9c0'
rpt2: [32m cache hit[39m
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/syntacticDiagnostics/cache/880ab91ed2e784215a083f47ac4ce8d3af9af9c0'
rpt2: [32m cache hit[39m
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/semanticDiagnostics/cache/880ab91ed2e784215a083f47ac4ce8d3af9af9c0'
rpt2: [32m cache hit[39m
rpt2: [34mgenerated declarations[39m for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-auth.ts'
rpt2: [34mtranspiling[39m 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-event-bus.ts'
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/code/cache/adb56c1705b74d66043a12e3d9a14bba087e21e2'
rpt2: [32m cache hit[39m
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/syntacticDiagnostics/cache/adb56c1705b74d66043a12e3d9a14bba087e21e2'
rpt2: [32m cache hit[39m
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/semanticDiagnostics/cache/adb56c1705b74d66043a12e3d9a14bba087e21e2'
rpt2: [32m cache hit[39m
rpt2: [34mgenerated declarations[39m for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-event-bus.ts'
rpt2: [34mtranspiling[39m 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-notifications.ts'
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/code/cache/1cefb9bfae8e7723bb76a9bc251d6f978aa93b1c'
rpt2: [32m cache hit[39m
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/syntacticDiagnostics/cache/1cefb9bfae8e7723bb76a9bc251d6f978aa93b1c'
rpt2: [32m cache hit[39m
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/semanticDiagnostics/cache/1cefb9bfae8e7723bb76a9bc251d6f978aa93b1c'
rpt2: [32m cache hit[39m
rpt2: [34mgenerated declarations[39m for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-notifications.ts'
rpt2: [34mtranspiling[39m 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-preferences.ts'
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/code/cache/856a284d7193595907cf0992b167a900283491ac'
rpt2: [32m cache hit[39m
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/syntacticDiagnostics/cache/856a284d7193595907cf0992b167a900283491ac'
rpt2: [32m cache hit[39m
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/semanticDiagnostics/cache/856a284d7193595907cf0992b167a900283491ac'
rpt2: [32m cache hit[39m
rpt2: [34mgenerated declarations[39m for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-preferences.ts'
rpt2: [34mtranspiling[39m 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-preferences.model.ts'
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/code/cache/732e2604621c29397d4e585f6d41d3ba6854413a'
rpt2: [32m cache hit[39m
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/syntacticDiagnostics/cache/732e2604621c29397d4e585f6d41d3ba6854413a'
rpt2: [32m cache hit[39m
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/semanticDiagnostics/cache/732e2604621c29397d4e585f6d41d3ba6854413a'
rpt2: [32m cache hit[39m
rpt2: [34mgenerated declarations[39m for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-preferences.model.ts'
rpt2: [34mtranspiling[39m 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-notification.model.ts'
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/code/cache/feee96c1ff2d29a8c5debf47a3cc5dc0549c9189'
rpt2: [32m cache hit[39m
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/syntacticDiagnostics/cache/feee96c1ff2d29a8c5debf47a3cc5dc0549c9189'
rpt2: [32m cache hit[39m
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/semanticDiagnostics/cache/feee96c1ff2d29a8c5debf47a3cc5dc0549c9189'
rpt2: [32m cache hit[39m
rpt2: [34mgenerated declarations[39m for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-notification.model.ts'
rpt2: [34mtranspiling[39m 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-event-bus.model.ts'
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/code/cache/f381dc3e0fdd4da8bd77cfa04f74b1b834f4b782'
rpt2: [32m cache hit[39m
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/syntacticDiagnostics/cache/f381dc3e0fdd4da8bd77cfa04f74b1b834f4b782'
rpt2: [32m cache hit[39m
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/semanticDiagnostics/cache/f381dc3e0fdd4da8bd77cfa04f74b1b834f4b782'
rpt2: [32m cache hit[39m
rpt2: [34mgenerated declarations[39m for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-event-bus.model.ts'
rpt2: [34mtranspiling[39m 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-auth.model.ts'
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/code/cache/8f0f657e372bca7aa00b78d92bfcf782a8c95e6c'
rpt2: [32m cache hit[39m
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/syntacticDiagnostics/cache/8f0f657e372bca7aa00b78d92bfcf782a8c95e6c'
rpt2: [32m cache hit[39m
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/semanticDiagnostics/cache/8f0f657e372bca7aa00b78d92bfcf782a8c95e6c'
rpt2: [32m cache hit[39m
rpt2: [34mgenerated declarations[39m for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-auth.model.ts'
rpt2: [34mdependency[39m 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/routes/auth-route.tsx'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/index.ts'
rpt2: [34mresolving[39m './routes/auth-route' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/index.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/routes/auth-route.tsx'
rpt2: [34mdependency[39m 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/routes/un-auth-route.tsx'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/index.ts'
rpt2: [34mresolving[39m './routes/un-auth-route' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/index.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/routes/un-auth-route.tsx'
rpt2: [34mtranspiling[39m 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/routes/auth-route.tsx'
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/code/cache/4ae4ca6b99a43b7d02489c63699af7f6f309600f'
rpt2: [32m cache hit[39m
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/syntacticDiagnostics/cache/4ae4ca6b99a43b7d02489c63699af7f6f309600f'
rpt2: [32m cache hit[39m
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/semanticDiagnostics/cache/4ae4ca6b99a43b7d02489c63699af7f6f309600f'
rpt2: [32m cache hit[39m
rpt2: [34mgenerated declarations[39m for 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/routes/auth-route.tsx'
rpt2: [34mtranspiling[39m 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/routes/un-auth-route.tsx'
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/code/cache/a53e7e846df175ae837fb6d2c0abc9a90cd41340'
rpt2: [32m cache hit[39m
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/syntacticDiagnostics/cache/a53e7e846df175ae837fb6d2c0abc9a90cd41340'
rpt2: [32m cache hit[39m
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/semanticDiagnostics/cache/a53e7e846df175ae837fb6d2c0abc9a90cd41340'
rpt2: [32m cache hit[39m
rpt2: [34mgenerated declarations[39m for 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/routes/un-auth-route.tsx'
rpt2: [34mdependency[39m 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/index.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/preferences/variable.tsx'
rpt2: [34mresolving[39m '../../hooks' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/preferences/variable.tsx'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/index.ts'
rpt2: [34mdependency[39m 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/index.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-notifications.ts'
rpt2: [34mresolving[39m '../../lib' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-notifications.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/index.ts'
rpt2: [34mdependency[39m 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/index.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-preferences.ts'
rpt2: [34mresolving[39m '../../lib' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-preferences.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/index.ts'
rpt2: [34mdependency[39m 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/index.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/managers/use-event-bus-manager.ts'
rpt2: [34mresolving[39m '../stores' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/managers/use-event-bus-manager.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/index.ts'
rpt2: [34mdependency[39m 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/use-logger.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/managers/use-event-bus-manager.ts'
rpt2: [34mresolving[39m '../use-logger' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/managers/use-event-bus-manager.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/use-logger.ts'
rpt2: [34mdependency[39m 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/logger.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-auth.ts'
rpt2: [34mresolving[39m '../../lib/logger' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-auth.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/logger.ts'
rpt2: [34mdependency[39m 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/logger.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-event-bus.ts'
rpt2: [34mresolving[39m '../../lib/logger' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-event-bus.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/logger.ts'
rpt2: [34mdependency[39m 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/index.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/routes/auth-route.tsx'
rpt2: [34mresolving[39m '../../../hooks' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/routes/auth-route.tsx'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/index.ts'
rpt2: [34mdependency[39m 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/index.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/routes/un-auth-route.tsx'
rpt2: [34mresolving[39m '../../../hooks' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/routes/un-auth-route.tsx'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/index.ts'
rpt2: [34mdependency[39m 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/auth/index.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-auth.ts'
rpt2: [34mresolving[39m '../../lib/auth' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-auth.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/auth/index.ts'
rpt2: [34mdependency[39m 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/core-utils.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-preferences.ts'
rpt2: [34mresolving[39m '../../lib/core-utils' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-preferences.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/core-utils.ts'
rpt2: [34mdependency[39m 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/routes/index.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/pages.tsx'
rpt2: [34mresolving[39m './routes' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/pages.tsx'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/routes/index.ts'
rpt2: [34mdependency[39m 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/lib/index.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/pages.tsx'
rpt2: [34mresolving[39m './lib' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/pages.tsx'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/lib/index.ts'
rpt2: [34mdependency[39m 'path/to/project/telestion-client/packages/telestion-client-core/src/components/preferences/group-context.tsx'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/preferences/group.tsx'
rpt2: [34mresolving[39m './group-context' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/preferences/group.tsx'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/components/preferences/group-context.tsx'
rpt2: [34mdependency[39m 'path/to/project/telestion-client/packages/telestion-client-core/src/components/preferences/group-context.tsx'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/preferences/variable.tsx'
rpt2: [34mresolving[39m './group-context' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/preferences/variable.tsx'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/components/preferences/group-context.tsx'
rpt2: [34mtranspiling[39m 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/auth/index.ts'
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/code/cache/d3c74f66f8d33557564f637e747445c732055721'
rpt2: [32m cache hit[39m
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/syntacticDiagnostics/cache/d3c74f66f8d33557564f637e747445c732055721'
rpt2: [32m cache hit[39m
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/semanticDiagnostics/cache/d3c74f66f8d33557564f637e747445c732055721'
rpt2: [32m cache hit[39m
rpt2: [34mgenerated declarations[39m for 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/auth/index.ts'
rpt2: [34mtranspiling[39m 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/core-utils.ts'
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/code/cache/f1d99e5080f37b835bd8204059d53dfedce6d1ae'
rpt2: [32m cache hit[39m
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/syntacticDiagnostics/cache/f1d99e5080f37b835bd8204059d53dfedce6d1ae'
rpt2: [32m cache hit[39m
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/semanticDiagnostics/cache/f1d99e5080f37b835bd8204059d53dfedce6d1ae'
rpt2: [32m cache hit[39m
rpt2: [34mgenerated declarations[39m for 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/core-utils.ts'
rpt2: [34mtranspiling[39m 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/routes/index.ts'
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/code/cache/5e49b0887dc419eda1a19f07f1d89edf471a27a5'
rpt2: [32m cache hit[39m
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/syntacticDiagnostics/cache/5e49b0887dc419eda1a19f07f1d89edf471a27a5'
rpt2: [32m cache hit[39m
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/semanticDiagnostics/cache/5e49b0887dc419eda1a19f07f1d89edf471a27a5'
rpt2: [32m cache hit[39m
rpt2: [34mgenerated declarations[39m for 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/routes/index.ts'
rpt2: [34mtranspiling[39m 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/lib/index.ts'
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/code/cache/be501ccac431c9789f27c901edbf1c1efdbd9e6c'
rpt2: [32m cache hit[39m
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/syntacticDiagnostics/cache/be501ccac431c9789f27c901edbf1c1efdbd9e6c'
rpt2: [32m cache hit[39m
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/semanticDiagnostics/cache/be501ccac431c9789f27c901edbf1c1efdbd9e6c'
rpt2: [32m cache hit[39m
rpt2: [34mgenerated declarations[39m for 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/lib/index.ts'
rpt2: [34mtranspiling[39m 'path/to/project/telestion-client/packages/telestion-client-core/src/components/preferences/group-context.tsx'
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/code/cache/8848020b94d8030a7b993b9e59e0074ee293ef4d'
rpt2: [32m cache hit[39m
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/syntacticDiagnostics/cache/8848020b94d8030a7b993b9e59e0074ee293ef4d'
rpt2: [32m cache hit[39m
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/semanticDiagnostics/cache/8848020b94d8030a7b993b9e59e0074ee293ef4d'
rpt2: [32m cache hit[39m
rpt2: [34mgenerated declarations[39m for 'path/to/project/telestion-client/packages/telestion-client-core/src/components/preferences/group-context.tsx'
rpt2: [34mdependency[39m 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-broadcast.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/index.ts'
rpt2: [34mresolving[39m './use-broadcast' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/index.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-broadcast.ts'
rpt2: [34mdependency[39m 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-channel.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/index.ts'
rpt2: [34mresolving[39m './use-channel' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/index.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-channel.ts'
rpt2: [34mdependency[39m 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-channel-latest.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/index.ts'
rpt2: [34mresolving[39m './use-channel-latest' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/index.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-channel-latest.ts'
rpt2: [34mdependency[39m 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-request.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/index.ts'
rpt2: [34mresolving[39m './use-request' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/index.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-request.ts'
rpt2: [34mdependency[39m 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-request.model.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/index.ts'
rpt2: [34mresolving[39m './use-request.model' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/index.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-request.model.ts'
rpt2: [34mdependency[39m 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/preferences-abstractions/use-pref-value.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/preferences-abstractions/index.ts'
rpt2: [34mresolving[39m './use-pref-value' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/preferences-abstractions/index.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/preferences-abstractions/use-pref-value.ts'
rpt2: [34mdependency[39m 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/preferences-abstractions/use-title.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/preferences-abstractions/index.ts'
rpt2: [34mresolving[39m './use-title' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/preferences-abstractions/index.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/preferences-abstractions/use-title.ts'
rpt2: [34mtranspiling[39m 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-broadcast.ts'
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/code/cache/6fb61e846e254c8bb4b0cee7eaa53316f8f9f4af'
rpt2: [32m cache hit[39m
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/syntacticDiagnostics/cache/6fb61e846e254c8bb4b0cee7eaa53316f8f9f4af'
rpt2: [32m cache hit[39m
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/semanticDiagnostics/cache/6fb61e846e254c8bb4b0cee7eaa53316f8f9f4af'
rpt2: [32m cache hit[39m
rpt2: [34mgenerated declarations[39m for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-broadcast.ts'
rpt2: [34mtranspiling[39m 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-channel.ts'
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/code/cache/a99240fa4104c2e16f94ce88fc1379c6ca921a1f'
rpt2: [32m cache hit[39m
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/syntacticDiagnostics/cache/a99240fa4104c2e16f94ce88fc1379c6ca921a1f'
rpt2: [32m cache hit[39m
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/semanticDiagnostics/cache/a99240fa4104c2e16f94ce88fc1379c6ca921a1f'
rpt2: [32m cache hit[39m
rpt2: [34mgenerated declarations[39m for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-channel.ts'
rpt2: [34mtranspiling[39m 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-channel-latest.ts'
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/code/cache/5d268f6ed9b35cc1ae4964fb21de18eff76f59f2'
rpt2: [32m cache hit[39m
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/syntacticDiagnostics/cache/5d268f6ed9b35cc1ae4964fb21de18eff76f59f2'
rpt2: [32m cache hit[39m
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/semanticDiagnostics/cache/5d268f6ed9b35cc1ae4964fb21de18eff76f59f2'
rpt2: [32m cache hit[39m
rpt2: [34mgenerated declarations[39m for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-channel-latest.ts'
rpt2: [34mtranspiling[39m 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-request.ts'
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/code/cache/3f935796e5e07974f4c5aaa3c19b17c6a696c9d7'
rpt2: [32m cache hit[39m
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/syntacticDiagnostics/cache/3f935796e5e07974f4c5aaa3c19b17c6a696c9d7'
rpt2: [32m cache hit[39m
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/semanticDiagnostics/cache/3f935796e5e07974f4c5aaa3c19b17c6a696c9d7'
rpt2: [32m cache hit[39m
rpt2: [34mgenerated declarations[39m for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-request.ts'
rpt2: [34mtranspiling[39m 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-request.model.ts'
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/code/cache/726b751bba7e02d385477aafaf0e9a81fa917bdf'
rpt2: [32m cache hit[39m
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/syntacticDiagnostics/cache/726b751bba7e02d385477aafaf0e9a81fa917bdf'
rpt2: [32m cache hit[39m
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/semanticDiagnostics/cache/726b751bba7e02d385477aafaf0e9a81fa917bdf'
rpt2: [32m cache hit[39m
rpt2: [34mgenerated declarations[39m for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-request.model.ts'
rpt2: [34mtranspiling[39m 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/preferences-abstractions/use-title.ts'
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/code/cache/91b4104bba25c3eaa9e1df3d0c0a905292e71791'
rpt2: [32m cache hit[39m
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/syntacticDiagnostics/cache/91b4104bba25c3eaa9e1df3d0c0a905292e71791'
rpt2: [32m cache hit[39m
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/semanticDiagnostics/cache/91b4104bba25c3eaa9e1df3d0c0a905292e71791'
rpt2: [32m cache hit[39m
rpt2: [34mgenerated declarations[39m for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/preferences-abstractions/use-title.ts'
rpt2: [34mtranspiling[39m 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/preferences-abstractions/use-pref-value.ts'
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/code/cache/2782e42cd9233d011535cbf67546ba1e84e8e99d'
rpt2: [32m cache hit[39m
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/syntacticDiagnostics/cache/2782e42cd9233d011535cbf67546ba1e84e8e99d'
rpt2: [32m cache hit[39m
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/semanticDiagnostics/cache/2782e42cd9233d011535cbf67546ba1e84e8e99d'
rpt2: [32m cache hit[39m
rpt2: [34mgenerated declarations[39m for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/preferences-abstractions/use-pref-value.ts'
rpt2: [34mdependency[39m 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/routes/prop-types.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/routes/auth-route.tsx'
rpt2: [34mresolving[39m './prop-types' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/routes/auth-route.tsx'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/routes/prop-types.ts'
rpt2: [34mdependency[39m 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/routes/prop-types.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/routes/un-auth-route.tsx'
rpt2: [34mresolving[39m './prop-types' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/routes/un-auth-route.tsx'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/routes/prop-types.ts'
rpt2: [34mtranspiling[39m 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/routes/prop-types.ts'
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/code/cache/49ca371f1a676f03b297ef127d8de23d4c93de53'
rpt2: [32m cache hit[39m
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/syntacticDiagnostics/cache/49ca371f1a676f03b297ef127d8de23d4c93de53'
rpt2: [32m cache hit[39m
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/semanticDiagnostics/cache/49ca371f1a676f03b297ef127d8de23d4c93de53'
rpt2: [32m cache hit[39m
rpt2: [34mgenerated declarations[39m for 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/routes/prop-types.ts'
rpt2: [34mdependency[39m 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/index.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-broadcast.ts'
rpt2: [34mresolving[39m '../../stores' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-broadcast.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/index.ts'
rpt2: [34mdependency[39m 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/index.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-channel.ts'
rpt2: [34mresolving[39m '../../stores' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-channel.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/index.ts'
rpt2: [34mdependency[39m 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/index.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-request.ts'
rpt2: [34mresolving[39m '../../stores' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-request.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/index.ts'
rpt2: [34mdependency[39m 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/index.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/preferences-abstractions/use-pref-value.ts'
rpt2: [34mresolving[39m '../../stores' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/preferences-abstractions/use-pref-value.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/index.ts'
rpt2: [34mdependency[39m 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/routes/auth-route.tsx'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/routes/index.ts'
rpt2: [34mresolving[39m './auth-route' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/routes/index.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/routes/auth-route.tsx'
rpt2: [34mdependency[39m 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/routes/un-auth-route.tsx'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/routes/index.ts'
rpt2: [34mresolving[39m './un-auth-route' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/routes/index.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/routes/un-auth-route.tsx'
rpt2: [34mdependency[39m 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/auth/fake-auth.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/auth/index.ts'
rpt2: [34mresolving[39m './fake-auth' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/auth/index.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/auth/fake-auth.ts'
rpt2: [34mdependency[39m 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-channel.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-channel-latest.ts'
rpt2: [34mresolving[39m './use-channel' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-channel-latest.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-channel.ts'
rpt2: [34mdependency[39m 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/preferences-abstractions/use-pref-value.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/preferences-abstractions/use-title.ts'
rpt2: [34mresolving[39m './use-pref-value' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/preferences-abstractions/use-title.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/preferences-abstractions/use-pref-value.ts'
rpt2: [34mtranspiling[39m 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/auth/fake-auth.ts'
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/code/cache/e5adf21fcb3c59c409f20f52e36799628a5eb29e'
rpt2: [32m cache hit[39m
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/syntacticDiagnostics/cache/e5adf21fcb3c59c409f20f52e36799628a5eb29e'
rpt2: [32m cache hit[39m
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/semanticDiagnostics/cache/e5adf21fcb3c59c409f20f52e36799628a5eb29e'
rpt2: [32m cache hit[39m
rpt2: [34mgenerated declarations[39m for 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/auth/fake-auth.ts'
rpt2: [34mdependency[39m 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/lib/is-valid-child.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/lib/index.ts'
rpt2: [34mresolving[39m './is-valid-child' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/lib/index.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/lib/is-valid-child.ts'
rpt2: [34mdependency[39m 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/lib/parse-routing.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/lib/index.ts'
rpt2: [34mresolving[39m './parse-routing' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/lib/index.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/lib/parse-routing.ts'
rpt2: [34mtranspiling[39m 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/lib/is-valid-child.ts'
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/code/cache/416ec387f9f91866b2a132adbf14d11736de957f'
rpt2: [32m cache hit[39m
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/syntacticDiagnostics/cache/416ec387f9f91866b2a132adbf14d11736de957f'
rpt2: [32m cache hit[39m
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/semanticDiagnostics/cache/416ec387f9f91866b2a132adbf14d11736de957f'
rpt2: [32m cache hit[39m
rpt2: [34mgenerated declarations[39m for 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/lib/is-valid-child.ts'
rpt2: [34mtranspiling[39m 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/lib/parse-routing.ts'
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/code/cache/e53e66d7e3b90883c5e927ecafd89593052e9a26'
rpt2: [32m cache hit[39m
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/syntacticDiagnostics/cache/e53e66d7e3b90883c5e927ecafd89593052e9a26'
rpt2: [32m cache hit[39m
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/semanticDiagnostics/cache/e53e66d7e3b90883c5e927ecafd89593052e9a26'
rpt2: [32m cache hit[39m
rpt2: [34mgenerated declarations[39m for 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/lib/parse-routing.ts'
rpt2: [34mdependency[39m 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/logger.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/auth/fake-auth.ts'
rpt2: [34mresolving[39m '../logger' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/auth/fake-auth.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/logger.ts'
rpt2: [34mdependency[39m 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/core-utils.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/lib/is-valid-child.ts'
rpt2: [34mresolving[39m '../../../lib/core-utils' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/lib/is-valid-child.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/core-utils.ts'
rpt2: [34mdependency[39m 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/core-utils.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/lib/parse-routing.ts'
rpt2: [34mresolving[39m '../../../lib/core-utils' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/lib/parse-routing.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/core-utils.ts'
(!) Error when using sourcemap for reporting an error: Can't resolve original location of error.
src/hooks/stores/use-notifications.ts (1:9)
[!] Error: '__spreadArray' is not exported by ../../node_modules/tslib/tslib.es6.js, imported by src/hooks/stores/use-notifications.ts
https://rollupjs.org/guide/en/#error -name-is-not-exported-by-module
src/hooks/stores/use-notifications.ts (1:9)
1: import { __spreadArray } from "tslib";
^
2: import create from 'zustand';
3: import { getLogger } from '../../lib';
Error: '__spreadArray' is not exported by ../../node_modules/tslib/tslib.es6.js, imported by src/hooks/stores/use-notifications.ts
at error (path/to/project/telestion-client/node_modules/rollup/dist/shared/rollup.js:5275:30)
at Module.error (path/to/project/telestion-client/node_modules/rollup/dist/shared/rollup.js:9992:16)
at Module.traceVariable (path/to/project/telestion-client/node_modules/rollup/dist/shared/rollup.js:10385:29)
at ModuleScope.findVariable (path/to/project/telestion-client/node_modules/rollup/dist/shared/rollup.js:8843:39)
at FunctionScope.findVariable (path/to/project/telestion-client/node_modules/rollup/dist/shared/rollup.js:2637:38)
at ChildScope.findVariable (path/to/project/telestion-client/node_modules/rollup/dist/shared/rollup.js:2637:38)
at FunctionScope.findVariable (path/to/project/telestion-client/node_modules/rollup/dist/shared/rollup.js:2637:38)
at ChildScope.findVariable (path/to/project/telestion-client/node_modules/rollup/dist/shared/rollup.js:2637:38)
at Identifier$1.bind (path/to/project/telestion-client/node_modules/rollup/dist/shared/rollup.js:4013:40)
at CallExpression$1.bind (path/to/project/telestion-client/node_modules/rollup/dist/shared/rollup.js:2724:23)

npm خطأ! كود ELIFECYCLE
npm خطأ! يخطئ 1
npm خطأ! @ wuespace / [email protected] الإصدار : rollup -c
npm خطأ! حالة الخروج 1
npm خطأ!
npm خطأ! فشل في @ wuespace / [email protected] البرنامج النصي للبناء.
npm خطأ! ربما لا تكون هذه مشكلة مع npm. من المحتمل أن يكون هناك مخرجات تسجيل إضافية أعلاه.

npm خطأ! يمكن العثور على سجل كامل لهذا التشغيل في:
npm خطأ! /storage/ludwig/.npm/_logs/2021-02-26T14_59_14_294Z-debug.log
""


بناء سجل مع tslib مثبتة بشكل صريح

""

@ wuespace / [email protected] build path / to / project / telestion-client / bundle / telestion-client-core
تراكمي -c

path / to / project / telestion-client / bundle / telestion-client-core / src / index.ts → build / index.js ، build / index.es.js ...
rpt2: تجاوز الخيارات المضمنة: {
"noEmitHelpers": خطأ ،
"importHelpers": صحيح ،
"noResolve": خطأ ،
"noEmit": خطأ ،
"inlineSourceMap": خطأ ،
"outDir": "path / to / project / telestion-client /pack / telestion-client-core / node_modules / .cache / rollup-plugin-typescript2 / placeholder" ،
"moduleResolution": 2 ،
"allowNonTsExtensions": صحيح
}
rpt2: تحليل tsconfig: {
"والخيارات": {
"الهدف": 1 ،
"الوحدة": 99 ،
"allowJs": صحيح ،
"checkJs": صحيح ،
"noEmit": خطأ ،
"ResolutionJsonModule": صحيح ،
"صارم": صحيح ،
"moduleResolution": 2 ،
"baseUrl": "path / to / project / telestion-client / packs" ،
"allowSyntheticDefaultImports": صحيح ،
"esModuleInterop": صحيح ،
"مسارات": {}،
"skipLibCheck": صحيح ،
"forceConsistentCasingInFileNames": صحيح ،
"pathsBasePath": "path / to / project / telestion-client / base-configs" ،
"ليب": [
"lib.es2015.d.ts" ،
"lib.dom.d.ts" ،
"lib.es2016.d.ts" ،
"lib.es2017.d.ts"
] ،
"إعلان": صحيح ،
"sourceMap": صحيح ،
"jsx": 4 ،
"تصريح Dir": "path / to / project / telestion-client / bundle / telestion-client-core / أنواع" ،
"configFilePath": "path / to / project / telestion-client /pack / telestion-client-core / tsconfig.build.json"،
"noEmitHelpers": خطأ ،
"importHelpers": صحيح ،
"noResolve": خطأ ،
"inlineSourceMap": خطأ ،
"outDir": "path / to / project / telestion-client /pack / telestion-client-core / node_modules / .cache / rollup-plugin-typescript2 / placeholder" ،
"allowNonTsExtensions": صحيح
} ،
"أسماء الملفات": [
"path / to / project / telestion-client /pack / telestion-client-core / src / index.ts" ،
"path / to / project / telestion-client / bundle / telestion-client-core / src / element / index.ts" ،
"path / to / project / telestion-client / bundle / telestion-client-core / src / مكونات / telestion-client.tsx" ،
"path / to / project / telestion-client / bundle / telestion-client-core / src / مكونات / صفحات / index.ts" ،
"path / to / project / telestion-client / bundle / telestion-client-core / src / element / pages / pages.tsx" ،
"path / to / project / telestion-client / bundle / telestion-client-core / src / element / pages / lib / index.ts" ،
"مسار / إلى / مشروع / telestion-client / باقات / telestion-client-core / src / مكونات / صفحات / lib / is-valid-child.ts" ،
"path / to / project / telestion-client / bundle / telestion-client-core / src / مكونات / صفحات / lib / parse-routing.ts" ،
"path / to / project / telestion-client / bundle / telestion-client-core / src / مكونات / صفحات / مسارات / auth-route.tsx" ،
"path / to / project / telestion-client / bundle / telestion-client-core / src / مكونات / صفحات / مسارات / index.ts" ،
"path / to / project / telestion-client / مجموعات / telestion-client-core / src / مكونات / صفحات / مسارات / prop-types.ts"
"path / to / project / telestion-client / bundle / telestion-client-core / src / مكونات / صفحات / مسارات / un-auth-route.tsx" ،
"path / to / project / telestion-client / bundle / telestion-client-core / src / مكونات / تفضيلات / group-Context.tsx" ،
"path / to / project / telestion-client / packs / telestion-client-core / src / element / preferences / group.tsx" ،
"path / to / project / telestion-client / bundle / telestion-client-core / src / element / preferences / index.ts" ،
"path / to / project / telestion-client / bundle / telestion-client-core / src / element / preferences / preferences.tsx" ،
"path / to / project / telestion-client / bundle / telestion-client-core / src / مكونات / تفضيلات / متغير .tsx" ،
"path / to / project / telestion-client / bundle / telestion-client-core / src / element / storybook / title-user.tsx" ،
"path / to / project / telestion-client / bundle / telestion-client-core / src / hooks / index.ts" ،
"path / to / project / telestion-client / bundle / telestion-client-core / src / hooks / use-logger.ts" ،
"path / to / project / telestion-client / bundle / telestion-client-core / src / hooks / abstractions / index.ts" ،
"path / to / project / telestion-client / bundle / telestion-client-core / src / hooks / abstractions / event-bus-abstractions / index.ts" ،
"path / to / project / telestion-client / bundle / telestion-client-core / src / hooks / abstractions / event-bus-abstractions / use-radio.ts" ،
"path / to / project / telestion-client / packs / telestion-client-core / src / hooks / abstractions / event-bus-abstractions / use-channel-latest.ts" ،
"path / to / project / telestion-client / bundle / telestion-client-core / src / hooks / abstractions / event-bus-abstractions / use-channel.ts" ،
"path / to / project / telestion-client / bundle / telestion-client-core / src / hooks / abstractions / event-bus-abstractions / use-request.model.ts" ،
"path / to / project / telestion-client / bundle / telestion-client-core / src / hooks / abstractions / event-bus-abstractions / use-request.ts" ،
"path / to / project / telestion-client / bundle / telestion-client-core / src / hooks / abstractions / preferences-abstractions / index.ts" ،
"path / to / project / telestion-client / bundle / telestion-client-core / src / hooks / abstractions / preferences-abstractions / use-pref-value.ts" ،
"path / to / project / telestion-client / bundle / telestion-client-core / src / hooks / abstractions / preferences-abstractions / use-title.ts" ،
"path / to / project / telestion-client / bundle / telestion-client-core / src / hooks / مديرو / index.ts" ،
"path / to / project / telestion-client / bundle / telestion-client-core / src / hooks / مديرو / use-event-bus-manager.model.ts" ،
"path / to / project / telestion-client / packs / telestion-client-core / src / hooks / manager / use-event-bus-manager.ts" ،
"path / to / project / telestion-client / packs / telestion-client-core / src / hooks / store / index.ts" ،
"path / to / project / telestion-client / bundle / telestion-client-core / src / hooks / store / use-auth.model.ts" ،
"path / to / project / telestion-client / bundle / telestion-client-core / src / hooks / store / use-auth.ts" ،
"path / to / project / telestion-client / packs / telestion-client-core / src / hooks / store / use-event-bus.model.ts" ،
"path / to / project / telestion-client / packs / telestion-client-core / src / hooks / store / use-event-bus.ts" ،
"path / to / project / telestion-client / bundle / telestion-client-core / src / hooks / Stores / use-notifications.model.ts" ،
"path / to / project / telestion-client / bundle / telestion-client-core / src / hooks / store / use-notifications.ts" ،
"path / to / project / telestion-client / bundle / telestion-client-core / src / hooks / store / use-preferences.model.ts" ،
"path / to / project / telestion-client / bundle / telestion-client-core / src / hooks / store / use-preferences.ts" ،
"path / to / project / telestion-client / bundle / telestion-client-core / src / lib / core-utils.ts" ،
"path / to / project / telestion-client / bundle / telestion-client-core / src / lib / index.ts" ،
"path / to / project / telestion-client / bundle / telestion-client-core / src / lib / logger.ts" ،
"path / to / project / telestion-client / bundle / telestion-client-core / src / lib / auth / fake-auth.ts" ،
"path / to / project / telestion-client / bundle / telestion-client-core / src / lib / auth / index.ts" ،
"path / to / project / telestion-client /pack / telestion-client-core / typings.d.ts"
] ،
"typeAcquisition": {
"تمكين": خطأ ،
"يشمل": []،
"استبعاد": []
} ،
"الخام": {
"يمتد": "../../base-configs/tsconfig.react.build.json" ،
"compilerOptions": {
"دليل الإقرار": "أنواع"
} ،
"يشمل": [
"src"،
"typings.d.ts"
] ،
"استبعاد": [
"node_modules"،
"يبني"،
"أنواع"،
"src / / .test.ts " ،"src / / .spec.ts " ،
"src / / .stories.ts "] ،"compileOnSave": خطأ} ،"أخطاء": [] ،"wildcardDirectories": {"path / to / project / telestion-client / packs / telestion-client-core / src": 1} ،"compileOnSave": خطأ}rpt2: نسخة مطبوعة: 4.2.2rpt2: إصدار tslib: 2.1.0rpt2: الإصدار التراكمي: 2.39.0rpt2: الإصدار التراكمي-plugin-typescript2: 0.30.0rpt2: خيارات البرنامج المساعد:{"tsconfig": "tsconfig.build.json"،"useTsconfigDeclusionDir": صحيح ،"الإسهاب": 3 ،"تحقق": صحيح ،"نظيف": خطأ ،"cacheRoot": "path / to / project / telestion-client /pack / telestion-client-core / node_modules / .cache / rollup-plugin-typescript2"،"يشمل": [" .ts + (| x)" ،" /.ts+ (|x)"
] ،
"استبعاد": [
" .d.ts"،" / .d.ts"
] ،
"abortOnError": صحيح ،
"rollupCommonJSResolveHack": خطأ ،
"tsconfigOverride": {}،
"محولات": [] ،
"tsconfigDefaults": {}،
"objectHashIgnoreUnknownHack": خطأ ،
"cwd": "path / to / project / telestion-client / bundle / telestion-client-core" ،
"مطبوعة": "الإصدار 4.2.2"
}
rpt2: التكوين التراكمي:
{
"المدخلات": "path / to / project / telestion-client /pack / telestion-client-core / src / index.ts" ،
"المكونات الإضافية": [
{
"الاسم": "نظير- قسم- خارجي"
} ،
{
"الاسم": "الصورة"
} ،
{
"الاسم": "حل العقدة"
} ،
{
"الاسم": "commonjs"
} ،
{
"الاسم": "rpt2"
} ،
{
"الاسم": "postcss"
} ،
{
"الاسم": "terser"
} ،
{
"الاسم": "ترخيص البرنامج الإضافي التراكمي"
} ،
{
"الاسم": "stdin"
}
] ،
"انتاج": [
{
"ملف": "build / index.js" ،
"تنسيق": "cjs"،
"المكونات الإضافية": [] ،
"sourcemap": صحيح
} ،
{
"ملف": "build / index.es.js" ،
"format": "esm"،
"المكونات الإضافية": [] ،
"sourcemap": صحيح
}
]
}
rpt2: مسار tsconfig: المسار / إلى / المشروع / العميل التليفزيوني / الحزم / telestion-client-core / tsconfig.build.json
rpt2: متضمن:
[
" .ts + (| x)" ،"/ .ts + (| x)"
]
rpt2: مستبعد:
[
" .d.ts"،" / .d.ts"
]
rpt2: [34m الأنواع المحيطة: [39m
rpt2: المسار / إلى / المشروع / telestion- العميل / الحزم / telestion-client-core / typings.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/anymatch/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/babel__core/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/babel__generator/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/babel__template/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/babel__traverse/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/braces/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/cli-color/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/clui/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/debug/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/ejs/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/estree/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/fs-extra/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/glob/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/glob-base/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/graceful-fs/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/hast/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/history/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/html-minifier-terser/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/inquirer/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/is-function/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/istanbul-lib-coverage/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/istanbul-lib-report/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/istanbul-reports/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/jest/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/json-schema/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/json5/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/lodash/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/markdown-to-jsx/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/mdast/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/micromatch/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/minimatch/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/minimist/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/node/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/node-fetch/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/normalize-package-data/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/npmlog/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/overlayscrollbars/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/parse-json/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/parse5/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/prettier/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/prop-types/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/q/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/qs/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/reach__router/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/react/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/react-color/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/react-dom/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/react-router/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/react-router-dom/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/react-syntax-highlighter/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/react-test-renderer/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/reactcss/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/resolve/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/shelljs/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/sockjs/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/source-list-map/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/stack-utils/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/tapable/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/through/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/uglify-js/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/unist/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/webpack/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/webpack-env/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/webpack-sources/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/yargs/index.d.ts
rpt2: path/to/project/telestion-client/node_modules/@types/yargs-parser/index.d.ts
rpt2: [34mtranspiling [39m 'path / to / project / telestion-client / bundle / telestion-client-core / src / index.ts'
rpt2: ذاكرة التخزين المؤقت: 'path / to / project / telestion-client / bundle / telestion-client-core / node_modules / .cache / rollup-plugin-typescript2 / rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42 / code / cache / f1e67fe89b62b940'
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: ذاكرة التخزين المؤقت: 'path / to / project / telestion-client /pack / telestion-client-core / node_modules / .cache / rollup-plugin-typescript2 / rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42 / syntacticDiagnostics / cachef17540
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: ذاكرة التخزين المؤقت: 'path / to / project / telestion-client /pack / telestion-client-core / node_modules / .cache / rollup-plugin-typescript2 / rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42 / semanticDiagnostics / cache / f1e14940
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: [34 إعلانًا مُنشأًا [39 مترًا لـ "المسار / إلى / المشروع / العميل التليفزيوني / الحزم / telestion-client-core / src / index.ts"
rpt2: [34mdependency [39m 'path / to / project / telestion-client / packs / telestion-client-core / src / مكونات / index.ts)
rpt2: تم استيراده بواسطة 'path / to / project / telestion-client / bundle / telestion-client-core / src / index.ts'
rpt2: [34mresolving [39m './components' مستوردة بواسطة 'path / to / project / telestion-client / bundle / telestion-client-core / src / index.ts'
rpt2: to 'path / to / project / telestion-client / packs / telestion-client-core / src / مكونات / index.ts'
rpt2: [34mdependency [39m 'path / to / project / telestion-client / packs / telestion-client-core / src / hooks / index.ts)
rpt2: تم استيراده بواسطة 'path / to / project / telestion-client / bundle / telestion-client-core / src / index.ts'
rpt2: [34mresolving [39m './hooks' مستوردة بواسطة 'path / to / project / telestion-client / bundle / telestion-client-core / src / index.ts'
rpt2: إلى 'path / to / project / telestion-client / packs / telestion-client-core / src / hooks / index.ts'
rpt2: [34mdependency [39m 'path / to / project / telestion-client / packs / telestion-client-core / src / lib / index.ts'
rpt2: تم استيراده بواسطة 'path / to / project / telestion-client / bundle / telestion-client-core / src / index.ts'
rpt2: [34mresolving [39m './lib' مستوردة بواسطة 'path / to / project / telestion-client / bundle / telestion-client-core / src / index.ts'
rpt2: إلى 'path / to / project / telestion-client / packs / telestion-client-core / src / lib / index.ts'
rpt2: [34mtranspiling [39m 'path / to / project / telestion-client / bundle / telestion-client-core / src / مكونات / index.ts'
rpt2: ذاكرة التخزين المؤقت: 'path / to / project / telestion-client / bundle / telestion-client-core / node_modules / .cache / rollup-plugin-typescript2 / rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42 / code / cache / 31ef7f0505f314370
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: ذاكرة التخزين المؤقت: 'path / to / project / telestion-client / bundle / telestion-client-core / node_modules / .cache / rollup-plugin-typescript2 / rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42 / syntacticDiagnefostics / cache / 31311360
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: ذاكرة التخزين المؤقت: 'path / to / project / telestion-client /pack / telestion-client-core / node_modules / .cache / rollup-plugin-typescript2 / rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42 / semanticDiagnostics / cache / 317cc32970
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: [34 إعلانًا مُنشأًا [39 مترًا لـ "مسار / إلى / مشروع / عميل telestion / حزم / telestion-client-core / src / مكونات / index.ts"
rpt2: [34mtranspiling [39m 'path / to / project / telestion-client / bundle / telestion-client-core / src / hooks / index.ts'
rpt2: cache: 'path / to / project / telestion-client /pack / telestion-client-core / node_modules / .cache / rollup-plugin-typescript2 / rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42 / code / cache / 27052ffcb105aefc4796
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: ذاكرة التخزين المؤقت: 'path / to / project / telestion-client /pack / telestion-client-core / node_modules / .cache / rollup-plugin-typescript2 / rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42 / syntacticDiagnostics / cache10579
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: ذاكرة التخزين المؤقت: 'path / to / project / telestion-client /pack / telestion-client-core / node_modules / .cache / rollup-plugin-typescript2 / rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42 / semanticDiagnostics / cache106ae / 2703ff52cable
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: [34 إعلانًا مُنشأًا [39 مترًا لـ "مسار / إلى / مشروع / عميل telestion / حزم / telestion-client-core / src / hooks / index.ts"
rpt2: [34mtranspiling [39m 'path / to / project / telestion-client / bundle / telestion-client-core / src / lib / index.ts'
rpt2: ذاكرة التخزين المؤقت: 'path / to / project / telestion-client / باقات / telestion-client-core / node_modules / .cache / rollup-plugin-typescript2 / rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42 / code / cache / 22a86813ec639629
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: ذاكرة التخزين المؤقت: 'path / to / project / telestion-client /pack / telestion-client-core / node_modules / .cache / rollup-plugin-typescript2 / rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42 / syntacticDiagnostics / cache / 22839
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: ذاكرة التخزين المؤقت: 'path / to / project / telestion-client /pack / telestion-client-core / node_modules / .cache / rollup-plugin-typescript2 / rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42 / semanticDiagnostics / cache063986847
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: [34 إعلانًا تم إنشاؤه [39 مترًا لـ "مسار / إلى / مشروع / عميل telestion / حزم / telestion-client-core / src / lib / index.ts"
rpt2: [34mdependency [39m 'path / to / project / telestion-client / packs / telestion-client-core / src / مكونات / telestion-client.tsx)
rpt2: تم استيراده بواسطة "path / to / project / telestion-client / bundle / telestion-client-core / src / مكونات / index.ts"
rpt2: [34mresolving [39m './telestion-client' مستوردة بواسطة 'path / to / project / telestion-client / bundle / telestion-client-core / src / مكونات / index.ts'
rpt2: إلى 'path / to / project / telestion-client / pack / telestion-client-core / src / مكونات / telestion-client.tsx'
rpt2: [34mdependency [39m 'path / to / project / telestion-client / packs / telestion-client-core / src / مكونات / صفحات / index.ts')
rpt2: تم استيراده بواسطة "path / to / project / telestion-client / bundle / telestion-client-core / src / مكونات / index.ts"
rpt2: [34mresolving [39m './pages' مستوردة بواسطة 'path / to / project / telestion-client / bundle / telestion-client-core / src / مكونات / index.ts'
rpt2: إلى 'path / to / project / telestion-client / packs / telestion-client-core / src / مكونات / صفحات / index.ts'
rpt2: [34mdependency [39m 'path / to / project / telestion-client / packs / telestion-client-core / src / مكونات / تفضيلات / index.ts')
rpt2: تم استيراده بواسطة "path / to / project / telestion-client / bundle / telestion-client-core / src / مكونات / index.ts"
rpt2: [34mresolving [39m './preferences' مستوردة بواسطة 'path / to / project / telestion-client / bundle / telestion-client-core / src / مكونات / index.ts'
rpt2: إلى "المسار / إلى / المشروع / العميل التليفزيوني / الحزم / telestion-client-core / src / المكونات / التفضيلات / index.ts"
rpt2: [34mdependency [39m 'path / to / project / telestion-client / packs / telestion-client-core / src / hooks / abstractions / index.ts')
rpt2: تم استيراده بواسطة "path / to / project / telestion-client / bundle / telestion-client-core / src / hooks / index.ts"
rpt2: [34mresolving [39m './abstractions' مستوردة بواسطة 'path / to / project / telestion-client / bundle / telestion-client-core / src / hooks / index.ts'
rpt2: to 'path / to / project / telestion-client / packs / telestion-client-core / src / hooks / abstractions / index.ts'
rpt2: [34mdependency [39m 'path / to / project / telestion-client / packs / telestion-client-core / src / hooks / Stores / index.ts')
rpt2: تم استيراده بواسطة "path / to / project / telestion-client / bundle / telestion-client-core / src / hooks / index.ts"
rpt2: [34mresolving [39m './stores' مستوردة بواسطة 'path / to / project / telestion-client / bundle / telestion-client-core / src / hooks / index.ts'
rpt2: إلى 'path / to / project / telestion-client / packs / telestion-client-core / src / hooks / store / index.ts'
rpt2: [34mdependency [39m 'path / to / project / telestion-client / packs / telestion-client-core / src / hooks / مديرو / index.ts'
rpt2: تم استيراده بواسطة "path / to / project / telestion-client / bundle / telestion-client-core / src / hooks / index.ts"
rpt2: [34mresolving [39m './managers' مستوردة بواسطة 'path / to / project / telestion-client / bundle / telestion-client-core / src / hooks / index.ts'
rpt2: إلى "المسار / إلى / المشروع / العميل التليفزيوني / الحزم / telestion-client-core / src / الخطافات / المديرين / index.ts"
rpt2: [34mdependency [39m 'path / to / project / telestion-client / packs / telestion-client-core / src / hooks / use-logger.ts')
rpt2: تم استيراده بواسطة "path / to / project / telestion-client / bundle / telestion-client-core / src / hooks / index.ts"
rpt2: [34mresolving [39m './use-logger' مستورد بواسطة 'path / to / project / telestion-client / bundle / telestion-client-core / src / hooks / index.ts'
rpt2: إلى 'path / to / project / telestion-client / packs / telestion-client-core / src / hooks / use-logger.ts'
rpt2: [34mdependency [39m 'path / to / project / telestion-client / packs / telestion-client-core / src / lib / logger.ts')
rpt2: تم استيراده بواسطة "path / to / project / telestion-client / bundle / telestion-client-core / src / lib / index.ts"
rpt2: [34mresolving [39m './logger' مستوردة بواسطة 'path / to / project / telestion-client / bundle / telestion-client-core / src / lib / index.ts'
rpt2: إلى "المسار / إلى / المشروع / العميل التليفزيوني / الحزم / telestion-client-core / src / lib / logger.ts"
rpt2: [34mtranspiling [39m 'path / to / project / telestion-client / packs / telestion-client-core / src / مكونات / telestion-client.tsx)
rpt2: ذاكرة التخزين المؤقت: 'path / to / project / telestion-client /pack / telestion-client-core / node_modules / .cache / rollup-plugin-typescript2 / rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42 / code / cache / d8557c683dbf543
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: ذاكرة التخزين المؤقت: 'path / to / project / telestion-client /pack / telestion-client-core / node_modules / .cache / rollup-plugin-typescript2 / rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42 / syntacticDiagnostics / cachedb9543
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: ذاكرة التخزين المؤقت: 'path / to / project / telestion-client /pack / telestion-client-core / node_modules / .cache / rollup-plugin-typescript2 / rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42 / semanticDiagnostics / cachedb / df5681
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: [إعلانات مُنشأة 34 [39 مترًا لـ "مسار / إلى / مشروع / عميل telestion / حزم / telestion-client-core / src / مكونات / telestion-client.tsx"
rpt2: [34mtranspiling [39m 'path / to / project / telestion-client / packs / telestion-client-core / src / components / preferences / index.ts')
rpt2: ذاكرة التخزين المؤقت: 'path / to / project / telestion-client / bundle / telestion-client-core / node_modules / .cache / rollup-plugin-typescript2 / rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42 / code / cache / 95c0679b8caab25'
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: ذاكرة التخزين المؤقت: 'path / to / project / telestion-client / باقات / telestion-client-core / node_modules / .cache / rollup-plugin-typescript2 / rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42 / syntacticDiagnostics / cache10568
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: ذاكرة التخزين المؤقت: 'path / to / project / telestion-client / باقات / telestion-client-core / node_modules / .cache / rollup-plugin-typescript2 / rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42 / semanticDiagnostics / cache108c06731
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: [34 إعلانًا مُنشأًا [39 مترًا لـ "المسار / إلى / المشروع / العميل التليفزيوني / الحزم / telestion-client-core / src / المكونات / التفضيلات / index.ts"
rpt2: [34mtranspiling [39m 'path / to / project / telestion-client / bundle / telestion-client-core / src / مكونات / صفحات / index.ts'
rpt2: ذاكرة التخزين المؤقت: 'path / to / project / telestion-client /pack / telestion-client-core / node_modules / .cache / rollup-plugin-typescript2 / rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42 / code / cache / 83046ead711b2184
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: ذاكرة التخزين المؤقت: 'path / to / project / telestion-client /pack / telestion-client-core / node_modules / .cache / rollup-plugin-typescript2 / rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42 / syntacticDiagnostics / cache / 81879
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: ذاكرة التخزين المؤقت: 'path / to / project / telestion-client / bundle / telestion-client-core / node_modules / .cache / rollup-plugin-typescript2 / rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42 / semanticDiagnostics / cache21184639
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: [34 إعلانًا مُنشأًا [39 مترًا لـ "مسار / إلى / مشروع / عميل telestion / حزم / telestion-client-core / src / مكونات / صفحات / index.ts"
rpt2: [34mtranspiling [39m 'path / to / project / telestion-client / packs / telestion-client-core / src / hooks / abstractions / index.ts')
rpt2: ذاكرة التخزين المؤقت: 'path / to / project / telestion-client /pack / telestion-client-core / node_modules / .cache / rollup-plugin-typescript2 / rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42 / code / cache / c1c168fb1232726'
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: ذاكرة التخزين المؤقت: 'path / to / project / telestion-client / bundle / telestion-client-core / node_modules / .cache / rollup-plugin-typescript2 / rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42 / syntacticDiagnostics16710621
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: ذاكرة التخزين المؤقت: 'path / to / project / telestion-client /pack / telestion-client-core / node_modules / .cache / rollup-plugin-typescript2 / rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42 / semanticDiagnostics / cache10712'
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: [34 إعلانًا مُنشأًا [39 مترًا لـ "مسار / إلى / مشروع / عميل telestion / حزم / telestion-client-core / src / hooks / abstractions / index.ts"
rpt2: [34mtranspiling [39m 'path / to / project / telestion-client / packs / telestion-client-core / src / hooks / Stores / index.ts')
rpt2: ذاكرة التخزين المؤقت: 'path / to / project / telestion-client /pack / telestion-client-core / node_modules / .cache / rollup-plugin-typescript2 / rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42 / code / cache / b8e2f9eb3f97980
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: ذاكرة التخزين المؤقت: 'path / to / project / telestion-client /pack / telestion-client-core / node_modules / .cache / rollup-plugin-typescript2 / rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42 / syntacticDiagnostics / cache / b3f974
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: ذاكرة التخزين المؤقت: 'path / to / project / telestion-client /pack / telestion-client-core / node_modules / .cache / rollup-plugin-typescript2 / rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42 / semanticDiagnostics / cache / b3fe97622
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: [34 إعلانًا تم إنشاؤه [39 مترًا لـ "مسار / إلى / مشروع / عميل telestion / حزم / telestion-client-core / src / hooks / Stores / index.ts"
rpt2: [34mtranspiling [39m 'path / to / project / telestion-client / packs / telestion-client-core / src / hooks / use-logger.ts')
rpt2: cache: 'path / to / project / telestion-client /pack / telestion-client-core / node_modules / .cache / rollup-plugin-typescript2 / rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42 / code / cache / 9d64351f2a2a2c
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: ذاكرة التخزين المؤقت: 'path / to / project / telestion-client /pack / telestion-client-core / node_modules / .cache / rollup-plugin-typescript2 / rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42 / syntacticDiagnostics / cachef29056
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: ذاكرة التخزين المؤقت: 'path / to / project / telestion-client /pack / telestion-client-core / node_modules / .cache / rollup-plugin-typescript2 / rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42 / semanticDiagnostics / cache2d18560
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: [إعلانات مُنشأة 34 [39 مترًا لـ "مسار / إلى / مشروع / عميل telestion / حزم / telestion-client-core / src / hooks / use-logger.ts"
rpt2: [34mtranspiling [39m 'path / to / project / telestion-client / packs / telestion-client-core / src / hooks / مديرو / index.ts'
rpt2: ذاكرة التخزين المؤقت: 'path / to / project / telestion-client /pack / telestion-client-core / node_modules / .cache / rollup-plugin-typescript2 / rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42 / code / cache / 0d49cc08da6423'
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: ذاكرة التخزين المؤقت: 'path / to / project / telestion-client / باقات / telestion-client-core / node_modules / .cache / rollup-plugin-typescript2 / rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42 / syntacticDiagnostics1617846e / 041749
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: ذاكرة التخزين المؤقت: 'path / to / project / telestion-client / باقات / telestion-client-core / node_modules / .cache / rollup-plugin-typescript2 / rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42 / semanticDiagnostics / cache / 0d174946
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: [34 إعلانًا مُنشأًا [39 مترًا لـ "مسار / إلى / مشروع / عميل telestion / حزم / telestion-client-core / src / hooks / مديرو / index.ts"
rpt2: [34mtranspiling [39m 'path / to / project / telestion-client / packs / telestion-client-core / src / lib / logger.ts'
rpt2: ذاكرة التخزين المؤقت: 'path / to / project / telestion-client / bundle / telestion-client-core / node_modules / .cache / rollup-plugin-typescript2 / rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42 / code / cache / 370e709ddb01ed29'
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: ذاكرة التخزين المؤقت: 'path / to / project / telestion-client /pack / telestion-client-core / node_modules / .cache / rollup-plugin-typescript2 / rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42 / syntacticDiagnostics / cachedb2 / 370340
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: ذاكرة التخزين المؤقت: 'path / to / project / telestion-client /pack / telestion-client-core / node_modules / .cache / rollup-plugin-typescript2 / rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42 / semanticDiagnostics / cached2db012977
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: [34m Generated ads [39m for 'path / to / project / telestion-client / bundle / telestion-client-core / src / lib / logger.ts'
rpt2: [34mdependency [39m 'path / to / project / telestion-client / packs / telestion-client-core / src / hooks / index.ts)
rpt2: تم استيراده بواسطة "path / to / project / telestion-client / pack / telestion-client-core / src / مكونات / telestion-client.tsx"
rpt2: [34mresolving [39m '../hooks' مستوردة بواسطة 'path / to / project / telestion-client / bundle / telestion-client-core / src / مكونات / telestion-client.tsx'
rpt2: إلى 'path / to / project / telestion-client / packs / telestion-client-core / src / hooks / index.ts'
rpt2: [34mdependency [39m 'path / to / project / telestion-client / packs / telestion-client-core / src / lib / logger.ts')
rpt2: تم استيراده بواسطة 'path / to / project / telestion-client / packs / telestion-client-core / src / hooks / use-logger.ts'
rpt2: [34mresolving [39m '../lib/logger' مستوردة بواسطة 'path / to / project / telestion-client / bundle / telestion-client-core / src / hooks / use-logger.ts'
rpt2: إلى "المسار / إلى / المشروع / العميل التليفزيوني / الحزم / telestion-client-core / src / lib / logger.ts"
rpt2: [34mdependency [39m 'path / to / project / telestion-client / packs / telestion-client-core / src / components / preferences / preferences.tsx)
rpt2: تم استيراده بواسطة "path / to / project / telestion-client / pack / telestion-client-core / src / مكونات / تفضيلات / index.ts"
rpt2: [34mresolving [39m './preferences' مستوردة بواسطة 'path / to / project / telestion-client / bundle / telestion-client-core / src / مكونات / تفضيلات / index.ts'
rpt2: إلى "المسار / إلى / المشروع / العميل التليفزيوني / الحزم / telestion-client-core / src / المكونات / التفضيلات / التفضيلات.tsx"
rpt2: [34mdependency [39m 'path / to / project / telestion-client / packs / telestion-client-core / src / مكونات / تفضيلات / group.tsx')
rpt2: تم استيراده بواسطة "path / to / project / telestion-client / pack / telestion-client-core / src / مكونات / تفضيلات / index.ts"
rpt2: [34mresolving [39m './group' مستوردة بواسطة 'path / to / project / telestion-client / bundle / telestion-client-core / src / مكونات / تفضيلات / index.ts'
rpt2: إلى "المسار / إلى / المشروع / العميل التليفزيوني / الحزم / telestion-client-core / src / المكونات / التفضيلات / group.tsx"
rpt2: [34mdependency [39m 'path / to / project / telestion-client / packs / telestion-client-core / src / مكونات / تفضيلات / متغير.tsx')
rpt2: تم استيراده بواسطة "path / to / project / telestion-client / pack / telestion-client-core / src / مكونات / تفضيلات / index.ts"
rpt2: [34mresolving [39m './variable' مستورد بواسطة 'path / to / project / telestion-client / bundle / telestion-client-core / src / مكونات / تفضيلات / index.ts'
rpt2: إلى "المسار / إلى / المشروع / العميل التليفزيوني / الحزم / telestion-client-core / src / المكونات / التفضيلات / المتغير .tsx"
rpt2: [34mdependency [39m 'path / to / project / telestion-client / packs / telestion-client-core / src / مكونات / صفحات / pages.tsx)
rpt2: تم استيراده بواسطة "path / to / project / telestion-client / pack / telestion-client-core / src / مكونات / صفحات / index.ts"
rpt2: [34mresolving [39m './pages' مستوردة بواسطة 'path / to / project / telestion-client / bundle / telestion-client-core / src / مكونات / صفحات / index.ts'
rpt2: إلى "المسار / إلى / المشروع / العميل التليفزيوني / الحزم / telestion-client-core / src / المكونات / الصفحات / pages.tsx"
rpt2: [34mdependency [39m 'path / to / project / telestion-client / packs / telestion-client-core / src / hooks / abstractions / event-bus-abstractions / index.ts)
rpt2: تم استيراده بواسطة 'path / to / project / telestion-client / packs / telestion-client-core / src / hooks / abstractions / index.ts'
rpt2: [34mresolving [39m './event-bus-abstractions' مستوردة بواسطة 'path / to / project / telestion-client / bundle / telestion-client-core / src / hooks / abstractions / index.ts'
rpt2: to 'path / to / project / telestion-client / pack / telestion-client-core / src / hooks / abstractions / event-bus-abstractions / index.ts'
rpt2: [34mdependency [39m 'path / to / project / telestion-client / packs / telestion-client-core / src / hooks / abstractions / preferences-abstractions / index.ts)
rpt2: تم استيراده بواسطة 'path / to / project / telestion-client / bundle / telestion-client-core / src / hooks / abstractions / index.ts'
rpt2: [34mresolving [39m './preferences-abstractions' مستوردة بواسطة 'path / to / project / telestion-client / bundle / telestion-client-core / src / hooks / abstractions / index.ts'
rpt2: إلى المسار / إلى / المشروع / telestion-client / الحزم / telestion-client-core / src / hooks / abstractions / preferences-abstractions / index.ts
rpt2: [34mdependency [39m 'path / to / project / telestion-client / packs / telestion-client-core / src / hooks / Stores / use-event-bus.ts')
rpt2: تم استيراده بواسطة 'path / to / project / telestion-client / packs / telestion-client-core / src / hooks / store / index.ts'
rpt2: [34mresolving [39m './use-event-bus' مستوردة بواسطة 'path / to / project / telestion-client / bundle / telestion-client-core / src / hooks / Stores / index.ts'
rpt2: إلى "المسار / إلى / المشروع / telestion-client / الحزم / telestion-client-core / src / الخطافات / المتاجر / use-event-bus.ts"
rpt2: [34mdependency [39m 'path / to / project / telestion-client / packs / telestion-client-core / src / hooks / Stores / use-auth.ts')
rpt2: تم استيراده بواسطة 'path / to / project / telestion-client / packs / telestion-client-core / src / hooks / store / index.ts'
rpt2: [34mresolving [39m './use-auth' مستورد بواسطة 'path / to / project / telestion-client / bundle / telestion-client-core / src / hooks / Stores / index.ts'
rpt2: إلى 'path / to / project / telestion-client / packs / telestion-client-core / src / hooks / Stores / use-auth.ts'
rpt2: [34mdependency [39m 'path / to / project / telestion-client / packs / telestion-client-core / src / hooks / Stores / use-notifications.ts')
rpt2: تم استيراده بواسطة 'path / to / project / telestion-client / packs / telestion-client-core / src / hooks / store / index.ts'
rpt2: [34mresolving [39m './use-notifications' مستوردة بواسطة 'path / to / project / telestion-client / bundle / telestion-client-core / src / hooks / Stores / index.ts'
rpt2: to 'path / to / project / telestion-client / packs / telestion-client-core / src / hooks / Stores / use-notifications.ts'
rpt2: [34mdependency [39m 'path / to / project / telestion-client / packs / telestion-client-core / src / hooks / Stores / use-preferences.ts')
rpt2: تم استيراده بواسطة "path / to / project / telestion-client / packs / telestion-client-core / src / hooks / store / index.ts"
rpt2: [34mresolving [39m './use-preferences' مستوردة بواسطة 'path / to / project / telestion-client / bundle / telestion-client-core / src / hooks / Stores / index.ts'
rpt2: إلى 'path / to / project / telestion-client / packs / telestion-client-core / src / hooks / Stores / use-preferences.ts'
rpt2: [34mdependency [39m 'path / to / project / telestion-client / packs / telestion-client-core / src / hooks / store / use-preferences.model.ts'
rpt2: تم استيراده بواسطة "path / to / project / telestion-client / packs / telestion-client-core / src / hooks / store / index.ts"
rpt2: [34mresolving [39m './use-preferences.model' مستورد بواسطة 'path / to / project / telestion-client / bundle / telestion-client-core / src / hooks / Stores / index.ts'
rpt2: إلى 'path / to / project / telestion-client / packs / telestion-client-core / src / hooks / Stores / use-preferences.model.ts'
rpt2: [34mdependency [39m 'path / to / project / telestion-client / packs / telestion-client-core / src / hooks / Stores / use-notifications.model.ts')
rpt2: تم استيراده بواسطة 'path / to / project / telestion-client / packs / telestion-client-core / src / hooks / store / index.ts'
rpt2: [34mresolving [39m './use-notification.model' مستورد بواسطة 'path / to / project / telestion-client / bundle / telestion-client-core / src / hooks / Stores / index.ts'
rpt2: to 'path / to / project / telestion-client / packs / telestion-client-core / src / hooks / Stores / use-notifications.model.ts'
rpt2: [34mdependency [39m 'path / to / project / telestion-client / packs / telestion-client-core / src / hooks / store / use-event-bus.model.ts'
rpt2: تم استيراده بواسطة "path / to / project / telestion-client / packs / telestion-client-core / src / hooks / store / index.ts"
rpt2: [34mresolving [39m './use-event-bus.model' مستورد بواسطة 'path / to / project / telestion-client / bundle / telestion-client-core / src / hooks / Stores / index.ts'
rpt2: إلى المسار / إلى / المشروع / telestion-client / الحزم / telestion-client-core / src / الخطافات / المتاجر / use-event-bus.model.ts
rpt2: [34mdependency [39m 'path / to / project / telestion-client / packs / telestion-client-core / src / hooks / Stores / use-auth.model.ts')
rpt2: تم استيراده بواسطة 'path / to / project / telestion-client / packs / telestion-client-core / src / hooks / store / index.ts'
rpt2: [34mresolving [39m './use-auth.model' مستورد بواسطة 'path / to / project / telestion-client / bundle / telestion-client-core / src / hooks / Stores / index.ts'
rpt2: إلى 'path / to / project / telestion-client / packs / telestion-client-core / src / hooks / Stores / use-auth.model.ts'
rpt2: [34mdependency [39m 'path / to / project / telestion-client / packs / telestion-client-core / src / hooks / مديرين / use-event-bus-manager.model.ts'
rpt2: تم استيراده بواسطة "path / to / project / telestion-client / pack / telestion-client-core / src / hooks / مديرين / index.ts"
rpt2: [34mresolving [39m './use-event-bus-manager.model' مستورد بواسطة 'path / to / project / telestion-client / bundle / telestion-client-core / src / hooks / مديرو / index.ts'
rpt2: إلى المسار / إلى / المشروع / telestion-client / الحزم / telestion-client-core / src / hooks / manager / use-event-bus-manager.model.ts
rpt2: [34mdependency [39m 'path / to / project / telestion-client / packs / telestion-client-core / src / hooks / مديرو / use-event-bus-manager.ts'
rpt2: تم استيراده بواسطة "path / to / project / telestion-client / pack / telestion-client-core / src / hooks / مديرين / index.ts"
rpt2: [34mresolving [39m './use-event-bus-manager' مستورد بواسطة 'path / to / project / telestion-client / bundle / telestion-client-core / src / hooks / مديرو / index.ts'
rpt2: إلى "المسار / إلى / المشروع / telestion-client / الحزم / telestion-client-core / src / الخطافات / المديرين / use-event-bus-manager.ts"
rpt2: [34mtranspiling [39m 'path / to / project / telestion-client / packs / telestion-client-core / src / components / preferences / preferences.tsx)
rpt2: cache: 'path / to / project / telestion-client /pack / telestion-client-core / node_modules / .cache / rollup-plugin-typescript2 / rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42 / code / cache / c054f4cd633971ae
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: ذاكرة التخزين المؤقت: 'path / to / project / telestion-client / bundle / telestion-client-core / node_modules / .cache / rollup-plugin-typescript2 / rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42 / syntacticDiagnostics / cache / cache / 97433
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: ذاكرة التخزين المؤقت: 'path / to / project / telestion-client /pack / telestion-client-core / node_modules / .cache / rollup-plugin-typescript2 / rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42 / semanticDiagnostics / cache / c054fae13
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: [إعلانات مُنشأة 34 [39 مترًا لـ "مسار / إلى / مشروع / عميل telestion / حزم / telestion-client-core / src / المكونات / التفضيلات / التفضيلات.tsx")
rpt2: [34mtranspiling [39m 'path / to / project / telestion-client / packs / telestion-client-core / src / components / preferences / variable.tsx')
rpt2: ذاكرة التخزين المؤقت: 'path / to / project / telestion-client / باقات / telestion-client-core / node_modules / .cache / rollup-plugin-typescript2 / rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42 / code / cache / 58fce9b6524b839'
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: ذاكرة التخزين المؤقت: 'path / to / project / telestion-client / باقات / telestion-client-core / node_modules / .cache / rollup-plugin-typescript2 / rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42 / syntacticDiagnostics / cache198239
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: ذاكرة التخزين المؤقت: 'path / to / project / telestion-client /pack / telestion-client-core / node_modules / .cache / rollup-plugin-typescript2 / rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42 / semanticDiagnostics / cache1982dcache / 58fce980
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: [34 إعلانًا مُنشأًا [39 مترًا لـ "مسار / إلى / مشروع / عميل telestion / حزم / telestion-client-core / src / مكونات / تفضيلات / متغير.tsx"
rpt2: [34mtranspiling [39m 'path / to / project / telestion-client / packs / telestion-client-core / src / element / preferences / group.tsx)
rpt2: ذاكرة التخزين المؤقت: 'path / to / project / telestion-client /pack / telestion-client-core / node_modules / .cache / rollup-plugin-typescript2 / rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42 / code / cache / 6d65236b5158440
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: ذاكرة التخزين المؤقت: 'path / to / project / telestion-client /pack / telestion-client-core / node_modules / .cache / rollup-plugin-typescript2 / rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42 / syntacticDiagnostics / cache / 6144409
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: ذاكرة التخزين المؤقت: 'path / to / project / telestion-client /pack / telestion-client-core / node_modules / .cache / rollup-plugin-typescript2 / rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42 / semanticDiagnostics / cache / 6dff9409
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: [إعلانات مُنشأة 34 [39 مترًا لـ "مسار / إلى / مشروع / عميل telestion / حزم / telestion-client-core / src / مكونات / تفضيلات / group.tsx"
rpt2: [34mtranspiling [39m 'path / to / project / telestion-client / packs / telestion-client-core / src / مكونات / صفحات / pages.tsx)
rpt2: ذاكرة التخزين المؤقت: 'path / to / project / telestion-client /pack / telestion-client-core / node_modules / .cache / rollup-plugin-typescript2 / rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42 / code / cache / c4ca50833db590'
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: ذاكرة التخزين المؤقت: 'path / to / project / telestion-client / bundle / telestion-client-core / node_modules / .cache / rollup-plugin-typescript2 / rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42 / syntacticDiagnostics / cache / cache / cache073
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: ذاكرة التخزين المؤقت: 'path / to / project / telestion-client / باقات / telestion-client-core / node_modules / .cache / rollup-plugin-typescript2 / rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42 / semanticDiagnostics / cached19750a506
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: [34 إعلانًا مُنشأًا [39 مترًا لـ "مسار / إلى / مشروع / عميل telestion / حزم / telestion-client-core / src / مكونات / صفحات / pages.tsx"
rpt2: [34mtranspiling [39m 'path / to / project / telestion-client / packs / telestion-client-core / src / hooks / abstractions / event-bus-abstractions / index.ts)
rpt2: ذاكرة التخزين المؤقت: 'path / to / project / telestion-client / باقات / telestion-client-core / node_modules / .cache / rollup-plugin-typescript2 / rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42 / code / cache / 5dc8770261f381
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: ذاكرة التخزين المؤقت: 'path / to / project / telestion-client /pack / telestion-client-core / node_modules / .cache / rollup-plugin-typescript2 / rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42 / syntacticDiagnostics / cache / 586
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: ذاكرة التخزين المؤقت: 'path / to / project / telestion-client /pack / telestion-client-core / node_modules / .cache / rollup-plugin-typescript2 / rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42 / semanticDiagnostics / cache / 5fd861
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: [34 إعلانًا تم إنشاؤه [39 مترًا لـ "مسار / إلى / مشروع / عميل telestion / حزم / telestion-client-core / src / hooks / abstractions / event-bus-abstractions / index.ts)
rpt2: [34mtranspiling [39m 'path / to / project / telestion-client / packs / telestion-client-core / src / hooks / store / use-auth.ts')
rpt2: ذاكرة التخزين المؤقت: 'path / to / project / telestion-client /pack / telestion-client-core / node_modules / .cache / rollup-plugin-typescript2 / rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42 / code / cache / 880abaed083e3479
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: ذاكرة التخزين المؤقت: 'path / to / project / telestion-client /pack / telestion-client-core / node_modules / .cache / rollup-plugin-typescript2 / rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42 / syntacticDiagnostics / cache2f91
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: ذاكرة التخزين المؤقت: 'path / to / project / telestion-client / bundle / telestion-client-core / node_modules / .cache / rollup-plugin-typescript2 / rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42 / semanticDiagnostics / cache2e / 84791
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: [34 إعلانًا مُنشأًا [39 مترًا لـ "مسار / إلى / مشروع / عميل telestion / حزم / telestion-client-core / src / hooks / Stores / use-auth.ts"
rpt2: [34mtranspiling [39m 'path / to / project / telestion-client / packs / telestion-client-core / src / hooks / Stores / use-notifications.ts')
rpt2: ذاكرة التخزين المؤقت: 'path / to / project / telestion-client / باقات / telestion-client-core / node_modules / .cache / rollup-plugin-typescript2 / rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42 / code / cache / 1cefb9bbfae8'
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: ذاكرة التخزين المؤقت: 'path / to / project / telestion-client / باقات / telestion-client-core / node_modules / .cache / rollup-plugin-typescript2 / rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42 / syntacticDiagnostics / cacheb / 1a973
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: ذاكرة التخزين المؤقت: 'path / to / project / telestion-client /pack / telestion-client-core / node_modules / .cache / rollup-plugin-typescript2 / rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42 / semanticDiagnostics / cacheb / 1fae973
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: [34 إعلانًا مُنشأًا [39 مترًا لـ "المسار / إلى / المشروع / العميل التليفزيوني / الحزم / telestion-client-core / src / hooks / Stores / use-notifications.ts"
rpt2: [34mtranspiling [39m 'path / to / project / telestion-client / packs / telestion-client-core / src / hooks / Stores / use-preferences.ts'
rpt2: cache: 'path / to / project / telestion-client /pack / telestion-client-core / node_modules / .cache / rollup-plugin-typescript2 / rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42 / code / cache / 856a284df719900
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: ذاكرة التخزين المؤقت: 'path / to / project / telestion-client / باقات / telestion-client-core / node_modules / .cache / rollup-plugin-typescript2 / rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42 / syntacticDiagnostics / cached19790
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: ذاكرة التخزين المؤقت: 'path / to / project / telestion-client /pack / telestion-client-core / node_modules / .cache / rollup-plugin-typescript2 / rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42 / semanticDiagnostics / cached719099228
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: [إعلانات مُنشأة 34 [39 مترًا لـ "مسار / إلى / مشروع / عميل telestion / حزم / telestion-client-core / src / hooks / Stores / use-preferences.ts"
rpt2: [34mtranspiling [39m 'path / to / project / telestion-client / packs / telestion-client-core / src / hooks / abstractions / preferences-abstractions / index.ts)
rpt2: ذاكرة التخزين المؤقت: 'path / to / project / telestion-client /pack / telestion-client-core / node_modules / .cache / rollup-plugin-typescript2 / rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42 / code / cache / f8ec43d362aa086'
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: ذاكرة التخزين المؤقت: 'path / to / project / telestion-client /pack / telestion-client-core / node_modules / .cache / rollup-plugin-typescript2 / rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42 / syntacticDiagnostics / cache / cache / f47846
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: ذاكرة التخزين المؤقت: 'path / to / project / telestion-client /pack / telestion-client-core / node_modules / .cache / rollup-plugin-typescript2 / rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42 / semanticDiagnostics / cache / f847086
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: [34 إعلانًا مُنشأًا [39 مترًا لـ "مسار / إلى / مشروع / عميل telestion / حزم / telestion-client-core / src / hooks / abstractions / preferences-abstractions / index.ts)
rpt2: [34mtranspiling [39m 'path / to / project / telestion-client / packs / telestion-client-core / src / hooks / Stores / use-event-bus.ts')
rpt2: ذاكرة التخزين المؤقت: 'path / to / project / telestion-client /pack / telestion-client-core / node_modules / .cache / rollup-plugin-typescript2 / rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42 / code / cache / adb56c170a1243e42'
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: ذاكرة التخزين المؤقت: 'path / to / project / telestion-client /pack / telestion-client-core / node_modules / .cache / rollup-plugin-typescript2 / rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42 / syntacticDiagnostics / cache / ad143
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: ذاكرة التخزين المؤقت: 'path / to / project / telestion-client / باقات / telestion-client-core / node_modules / .cache / rollup-plugin-typescript2 / rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42 / semanticDiagnostics / cache / adb14a43
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: [إعلان 34m Generated [39m لـ 'path / to / project / telestion-client / packs / telestion-client-core / src / hooks / Stores / use-event-bus.ts'
rpt2: [34mtranspiling [39m 'path / to / project / telestion-client / packs / telestion-client-core / src / hooks / store / use-preferences.model.ts'
rpt2: ذاكرة التخزين المؤقت: 'path / to / project / telestion-client / bundle / telestion-client-core / node_modules / .cache / rollup-plugin-typescript2 / rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42 / code / cache / 732e2604da52941
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: ذاكرة التخزين المؤقت: 'path / to / project / telestion-client / bundle / telestion-client-core / node_modules / .cache / rollup-plugin-typescript2 / rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42 / syntacticDiagnostics / cache / 729439a
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: ذاكرة التخزين المؤقت: 'path / to / project / telestion-client /pack / telestion-client-core / node_modules / .cache / rollup-plugin-typescript2 / rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42 / semanticDiagnostics / cache / 732e39641
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: [إعلان 34m Generated [39m لـ 'path / to / project / telestion-client / packs / telestion-client-core / src / hooks / Stores / use-preferences.model.ts'
rpt2: [34mtranspiling [39m 'path / to / project / telestion-client / packs / telestion-client-core / src / hooks / store / use-notifications.model.ts')
rpt2: ذاكرة التخزين المؤقت: 'path / to / project / telestion-client /pack / telestion-client-core / node_modules / .cache / rollup-plugin-typescript2 / rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42 / code / cache / feee96c1ff2db2947
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: ذاكرة التخزين المؤقت: 'path / to / project / telestion-client / bundle / telestion-client-core / node_modules / .cache / rollup-plugin-typescript2 / rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42 / syntacticDiagnostics / cache / charge479
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: ذاكرة التخزين المؤقت: 'path / to / project / telestion-client / bundle / telestion-client-core / node_modules / .cache / rollup-plugin-typescript2 / rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42 / semanticDiagnostics / cache2dcc5dcc029a
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: [34 إعلانًا مُنشأًا [39 مترًا لـ "مسار / إلى / مشروع / عميل telestion / حزم / telestion-client-core / src / hooks / Stores / use-notifications.model.ts ')
rpt2: [34mtranspiling [39m 'path / to / project / telestion-client / packs / telestion-client-core / src / hooks / store / use-event-bus.model.ts'
rpt2: ذاكرة التخزين المؤقت: 'path / to / project / telestion-client / باقات / telestion-client-core / node_modules / .cache / rollup-plugin-typescript2 / rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42 / code / cache / f381dc4e0b4
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: ذاكرة التخزين المؤقت: 'path / to / project / telestion-client /pack / telestion-client-core / node_modules / .cache / rollup-plugin-typescript2 / rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42 / syntacticDiagnostics / cache3b8
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: ذاكرة التخزين المؤقت: 'path / to / project / telestion-client / bundle / telestion-client-core / node_modules / .cache / rollup-plugin-typescript2 / rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42 / semanticDiagnostics / cache3b84b381
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: [إعلانات مُنشأة 34 [39 مترًا لـ "مسار / إلى / مشروع / عميل telestion / حزم / telestion-client-core / src / hooks / Stores / use-event-bus.model.ts"
rpt2: [34mtranspiling [39m 'path / to / project / telestion-client / packs / telestion-client-core / src / hooks / store / use-auth.model.ts')
rpt2: ذاكرة التخزين المؤقت: 'path / to / project / telestion-client / باقات / telestion-client-core / node_modules / .cache / rollup-plugin-typescript2 / rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42 / code / cache / 8f0f657aa00278ca
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: ذاكرة التخزين المؤقت: 'path / to / project / telestion-client /pack / telestion-client-core / node_modules / .cache / rollup-plugin-typescript2 / rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42 / syntacticDiagnostics07657aa / 837
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: ذاكرة التخزين المؤقت: 'path / to / project / telestion-client /pack / telestion-client-core / node_modules / .cache / rollup-plugin-typescript2 / rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42 / semanticDiagnostics / 657aa / 8b078
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: [إعلانات مُنشأة 34 [39 مترًا لـ 'path / to / project / telestion-client / packs / telestion-client-core / src / hooks / store / use-auth.model.ts')
rpt2: [34mtranspiling [39m 'path / to / project / telestion-client / packs / telestion-client-core / src / hooks / مديرو / use-event-bus-manager.model.ts'
rpt2: cache: 'path / to / project / telestion-client /pack / telestion-client-core / node_modules / .cache / rollup-plugin-typescript2 / rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42 / code / cache / 5b9b10211b238e44'
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: ذاكرة التخزين المؤقت: 'path / to / project / telestion-client /pack / telestion-client-core / node_modules / .cache / rollup-plugin-typescript2 / rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42 / syntacticDiagnostics / cache211b33
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: ذاكرة التخزين المؤقت: 'path / to / project / telestion-client /pack / telestion-client-core / node_modules / .cache / rollup-plugin-typescript2 / rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42 / semanticDiagnostics / cache2112b938
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: [إعلانات مُنشأة 34 [39 مترًا لـ "مسار / إلى / مشروع / عميل telestion / حزم / telestion-client-core / src / hooks / مديرو / use-event-bus-manager.model.ts"
rpt2: [34mdependency [39m 'path / to / project / telestion-client / packs / telestion-client-core / src / مكونات / صفحات / مسارات / auth-route.tsx'
rpt2: تم استيراده بواسطة "path / to / project / telestion-client / pack / telestion-client-core / src / مكونات / صفحات / index.ts"
rpt2: [34mresolving [39m './routes/auth-route' مستورد بواسطة 'path / to / project / telestion-client / bundle / telestion-client-core / src / مكونات / صفحات / index.ts'
rpt2: إلى "مسار / إلى / مشروع / telestion-client / مجموعات / telestion-client-core / src / مكونات / صفحات / مسارات / auth-route.tsx"
rpt2: [34mtranspiling [39m 'path / to / project / telestion-client / packs / telestion-client-core / src / hooks / مديرو / use-event-bus-manager.ts'
rpt2: ذاكرة التخزين المؤقت: 'path / to / project / telestion-client /pack / telestion-client-core / node_modules / .cache / rollup-plugin-typescript2 / rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42 / code / cache / d770d4be191431
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: ذاكرة التخزين المؤقت: 'path / to / project / telestion-client / bundle / telestion-client-core / node_modules / .cache / rollup-plugin-typescript2 / rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42 / syntacticDiagnostics / cache / d145dbc197
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: cache: 'path / to / project / telestion-client /pack / telestion-client-core / node_modules / .cache / rollup-plugin-typescript2 / rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42 / semanticDiagnostics / cache19d14570
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: [إعلانات مُنشأة 34 [39 مترًا لـ "مسار / إلى / مشروع / عميل telestion / حزم / telestion-client-core / src / hooks / مديرو / use-event-bus-manager.ts"
rpt2: [34mdependency [39m 'path / to / project / telestion-client / packs / telestion-client-core / src / مكونات / صفحات / مسارات / un-auth-route.tsx'
rpt2: تم استيراده بواسطة 'path / to / project / telestion-client / bundle / telestion-client-core / src / مكونات / صفحات / index.ts'
rpt2: [34mresolving [39m './routes/un-auth-route' مستوردة بواسطة 'path / to / project / telestion-client / bundle / telestion-client-core / src / مكونات / صفحات / index.ts'
rpt2: إلى "مسار / إلى / مشروع / تيليستيون-عميل / حزم / telestion-client-core / src / مكونات / صفحات / مسارات / un-auth-route.tsx"
rpt2: [34mtranspiling [39m 'path / to / project / telestion-client / packs / telestion-client-core / src / components / pages / links / auth-route.tsx'
rpt2: ذاكرة التخزين المؤقت: 'path / to / project / telestion-client / bundle / telestion-client-core / node_modules / .cache / rollup-plugin-typescript2 / rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42 / code / cache / 4ae4ca6d099443'
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: ذاكرة التخزين المؤقت: 'path / to / project / telestion-client /pack / telestion-client-core / node_modules / .cache / rollup-plugin-typescript2 / rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42 / syntacticDiagnostics / cache02400
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: ذاكرة التخزين المؤقت: 'path / to / project / telestion-client / bundle / telestion-client-core / node_modules / .cache / rollup-plugin-typescript2 / rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42 / semanticDiagnostics / cache072438900
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: [34 إعلانًا مُنشأًا [39 مترًا لـ 'path / to / project / telestion-client / packs / telestion-client-core / src / مكونات / صفحات / مسارات / auth-route.tsx'
rpt2: [34mtranspiling [39m 'path / to / project / telestion-client / packs / telestion-client-core / src / مكونات / صفحات / مسارات / un-auth-route.tsx'
rpt2: ذاكرة التخزين المؤقت: 'path / to / project / telestion-client / باقات / telestion-client-core / node_modules / .cache / rollup-plugin-typescript2 / rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42 / code / cache / a53e7e846bdf940'
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: ذاكرة التخزين المؤقت: 'path / to / project / telestion-client / باقات / telestion-client-core / node_modules / .cache / rollup-plugin-typescript2 / rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42 / syntacticDiagnostics / cache84653
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: ذاكرة التخزين المؤقت: 'path / to / project / telestion-client / bundle / telestion-client-core / node_modules / .cache / rollup-plugin-typescript2 / rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42 / semanticDiagnostics / cache8467d5e40
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: [34 إعلانًا مُنشأًا [39 مترًا لـ 'path / to / project / telestion-client / packs / telestion-client-core / src / مكونات / صفحات / مسارات / un-auth-route.tsx'
rpt2: [34mdependency [39m 'path / to / project / telestion-client / packs / telestion-client-core / src / hooks / index.ts)
rpt2: تم استيراده بواسطة "path / to / project / telestion-client / packs / telestion-client-core / src / المكونات / التفضيلات / المتغير .tsx"
rpt2: [34mresolving [39m '../../hooks' مستوردة بواسطة 'path / to / project / telestion-client / bundle / telestion-client-core / src / مكونات / تفضيلات / متغير.tsx'
rpt2: إلى 'path / to / project / telestion-client / packs / telestion-client-core / src / hooks / index.ts'
rpt2: [34mdependency [39m 'path / to / project / telestion-client / packs / telestion-client-core / src / lib / index.ts'
rpt2: تم استيراده بواسطة 'path / to / project / telestion-client / packs / telestion-client-core / src / hooks / store / use-notifications.ts'
rpt2: [34mresolving [39m '../../lib' مستورد بواسطة 'path / to / project / telestion-client / bundle / telestion-client-core / src / hooks / Stores / use-notifications.ts'
rpt2: إلى 'path / to / project / telestion-client / packs / telestion-client-core / src / lib / index.ts'
rpt2: [34mdependency [39m 'path / to / project / telestion-client / packs / telestion-client-core / src / lib / index.ts'
rpt2: تم استيراده بواسطة "path / to / project / telestion-client / pack / telestion-client-core / src / hooks / store / use-preferences.ts"
rpt2: [34mresolving [39m '../../lib' مستورد بواسطة 'path / to / project / telestion-client / bundle / telestion-client-core / src / hooks / Stores / use-preferences.ts'
rpt2: إلى 'path / to / project / telestion-client / packs / telestion-client-core / src / lib / index.ts'
rpt2: [34mdependency [39m 'path / to / project / telestion-client / packs / telestion-client-core / src / lib / logger.ts')
rpt2: تم استيراده بواسطة 'path / to / project / telestion-client / packs / telestion-client-core / src / hooks / store / use-auth.ts'
rpt2: [34mresolving [39m '../../lib/logger' مستورد بواسطة 'path / to / project / telestion-client / bundle / telestion-client-core / src / hooks / Stores / use-auth.ts'
rpt2: إلى "المسار / إلى / المشروع / العميل التليفزيوني / الحزم / telestion-client-core / src / lib / logger.ts"
rpt2: [34mdependency [39m 'path / to / project / telestion-client / packs / telestion-client-core / src / lib / logger.ts')
rpt2: تم استيراده بواسطة 'path / to / project / telestion-client / packs / telestion-client-core / src / hooks / store / use-event-bus.ts'
rpt2: [34mresolving [39m '../../lib/logger' مستورد بواسطة 'path / to / project / telestion-client / bundle / telestion-client-core / src / hooks / Stores / use-event-bus. ts '
rpt2: إلى "المسار / إلى / المشروع / العميل التليفزيوني / الحزم / telestion-client-core / src / lib / logger.ts"
rpt2: [34mdependency [39m 'path / to / project / telestion-client / packs / telestion-client-core / src / hooks / index.ts)
rpt2: تم استيراده بواسطة "path / to / project / telestion-client / packs / telestion-client-core / src / مكونات / صفحات / مسارات / auth-route.tsx"
rpt2: [34mresolving [39m '../../../hooks' مستوردة بواسطة 'path / to / project / telestion-client / bundle / telestion-client-core / src / مكونات / صفحات / مسارات / طريق مصادقة .tsx '
rpt2: إلى 'path / to / project / telestion-client / packs / telestion-client-core / src / hooks / index.ts'
rpt2: [34mdependency [39m 'path / to / project / telestion-client / packs / telestion-client-core / src / hooks / index.ts)
rpt2: تم استيراده بواسطة "path / to / project / telestion-client /pack / telestion-client-core / src / مكونات / صفحات / مسارات / un-auth-route.tsx '
rpt2: [34mresolving [39m '../../../hooks' مستوردة بواسطة 'path / to / project / telestion-client / bundle / telestion-client-core / src / مكونات / صفحات / مسارات / un-auth -route.tsx '
rpt2: إلى 'path / to / project / telestion-client / packs / telestion-client-core / src / hooks / index.ts'
rpt2: [34mdependency [39m 'path / to / project / telestion-client / packs / telestion-client-core / src / hooks / use-logger.ts')
rpt2: تم استيراده بواسطة "path / to / project / telestion-client / pack / telestion-client-core / src / hooks / مديرين / use-event-bus-manager.ts"
rpt2: [34mresolving [39m '../use-logger' مستورد بواسطة 'path / to / project / telestion-client / bundle / telestion-client-core / src / hooks / مديرين / use-event-bus-manager.ts "
rpt2: إلى 'path / to / project / telestion-client / packs / telestion-client-core / src / hooks / use-logger.ts'
rpt2: [34mdependency [39m 'path / to / project / telestion-client / packs / telestion-client-core / src / hooks / Stores / index.ts')
rpt2: تم استيراده بواسطة "path / to / project / telestion-client / pack / telestion-client-core / src / hooks / مديرين / use-event-bus-manager.ts"
rpt2: [34mresolving [39m '../stores' مستوردة بواسطة 'path / to / project / telestion-client / bundle / telestion-client-core / src / hooks / مديرين / use-event-bus-manager.ts'
rpt2: إلى 'path / to / project / telestion-client / packs / telestion-client-core / src / hooks / store / index.ts'
rpt2: [34mdependency [39m 'path / to / project / telestion-client / packs / telestion-client-core / src / lib / auth / index.ts)
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-auth.ts'
rpt2: [34mresolving[39m '../../lib/auth' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-auth.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/auth/index.ts'
rpt2: [34mdependency[39m 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/core-utils.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-preferences.ts'
rpt2: [34mresolving[39m '../../lib/core-utils' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-preferences.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/core-utils.ts'
rpt2: [34mdependency[39m 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/routes/index.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/pages.tsx'
rpt2: [34mresolving[39m './routes' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/pages.tsx'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/routes/index.ts'
rpt2: [34mdependency[39m 'path/to/project/telestion-client/packages/telestion-client-core/src/components/preferences/group-context.tsx'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/preferences/variable.tsx'
rpt2: [34mresolving[39m './group-context' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/preferences/variable.tsx'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/components/preferences/group-context.tsx'
rpt2: [34mdependency[39m 'path/to/project/telestion-client/packages/telestion-client-core/src/components/preferences/group-context.tsx'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/preferences/group.tsx'
rpt2: [34mresolving[39m './group-context' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/preferences/group.tsx'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/components/preferences/group-context.tsx'
rpt2: [34mdependency[39m 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/lib/index.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/pages.tsx'
rpt2: [34mresolving[39m './lib' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/pages.tsx'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/lib/index.ts'
rpt2: [34mtranspiling[39m 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/auth/index.ts'
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/code/cache/d3c74f66f8d33557564f637e747445c732055721'
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/syntacticDiagnostics/cache/d3c74f66f8d33557564f637e747445c732055721'
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/semanticDiagnostics/cache/d3c74f66f8d33557564f637e747445c732055721'
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: [34mgenerated declarations[39m for 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/auth/index.ts'
rpt2: [34mtranspiling[39m 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/core-utils.ts'
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/code/cache/f1d99e5080f37b835bd8204059d53dfedce6d1ae'
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/syntacticDiagnostics/cache/f1d99e5080f37b835bd8204059d53dfedce6d1ae'
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/semanticDiagnostics/cache/f1d99e5080f37b835bd8204059d53dfedce6d1ae'
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: [34mgenerated declarations[39m for 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/core-utils.ts'
rpt2: [34mtranspiling[39m 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/routes/index.ts'
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/code/cache/5e49b0887dc419eda1a19f07f1d89edf471a27a5'
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/syntacticDiagnostics/cache/5e49b0887dc419eda1a19f07f1d89edf471a27a5'
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/semanticDiagnostics/cache/5e49b0887dc419eda1a19f07f1d89edf471a27a5'
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: [34mgenerated declarations[39m for 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/routes/index.ts'
rpt2: [34mtranspiling[39m 'path/to/project/telestion-client/packages/telestion-client-core/src/components/preferences/group-context.tsx'
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/code/cache/8848020b94d8030a7b993b9e59e0074ee293ef4d'
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/syntacticDiagnostics/cache/8848020b94d8030a7b993b9e59e0074ee293ef4d'
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/semanticDiagnostics/cache/8848020b94d8030a7b993b9e59e0074ee293ef4d'
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: [34mgenerated declarations[39m for 'path/to/project/telestion-client/packages/telestion-client-core/src/components/preferences/group-context.tsx'
rpt2: [34mtranspiling[39m 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/lib/index.ts'
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/code/cache/be501ccac431c9789f27c901edbf1c1efdbd9e6c'
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/syntacticDiagnostics/cache/be501ccac431c9789f27c901edbf1c1efdbd9e6c'
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/semanticDiagnostics/cache/be501ccac431c9789f27c901edbf1c1efdbd9e6c'
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: [34mgenerated declarations[39m for 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/lib/index.ts'
rpt2: [34mdependency[39m 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-channel-latest.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/index.ts'
rpt2: [34mresolving[39m './use-channel-latest' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/index.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-channel-latest.ts'
rpt2: [34mdependency[39m 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-broadcast.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/index.ts'
rpt2: [34mresolving[39m './use-broadcast' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/index.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-broadcast.ts'
rpt2: [34mdependency[39m 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-channel.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/index.ts'
rpt2: [34mresolving[39m './use-channel' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/index.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-channel.ts'
rpt2: [34mdependency[39m 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-request.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/index.ts'
rpt2: [34mresolving[39m './use-request' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/index.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-request.ts'
rpt2: [34mdependency[39m 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/preferences-abstractions/use-pref-value.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/preferences-abstractions/index.ts'
rpt2: [34mresolving[39m './use-pref-value' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/preferences-abstractions/index.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/preferences-abstractions/use-pref-value.ts'
rpt2: [34mdependency[39m 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-request.model.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/index.ts'
rpt2: [34mresolving[39m './use-request.model' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/index.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-request.model.ts'
rpt2: [34mdependency[39m 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/preferences-abstractions/use-title.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/preferences-abstractions/index.ts'
rpt2: [34mresolving[39m './use-title' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/preferences-abstractions/index.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/preferences-abstractions/use-title.ts'
rpt2: [34mtranspiling[39m 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-channel-latest.ts'
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/code/cache/5d268f6ed9b35cc1ae4964fb21de18eff76f59f2'
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/syntacticDiagnostics/cache/5d268f6ed9b35cc1ae4964fb21de18eff76f59f2'
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/semanticDiagnostics/cache/5d268f6ed9b35cc1ae4964fb21de18eff76f59f2'
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: [34mgenerated declarations[39m for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-channel-latest.ts'
rpt2: [34mtranspiling[39m 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-broadcast.ts'
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/code/cache/6fb61e846e254c8bb4b0cee7eaa53316f8f9f4af'
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/syntacticDiagnostics/cache/6fb61e846e254c8bb4b0cee7eaa53316f8f9f4af'
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/semanticDiagnostics/cache/6fb61e846e254c8bb4b0cee7eaa53316f8f9f4af'
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: [34mgenerated declarations[39m for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-broadcast.ts'
rpt2: [34mtranspiling[39m 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-request.ts'
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/code/cache/3f935796e5e07974f4c5aaa3c19b17c6a696c9d7'
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/syntacticDiagnostics/cache/3f935796e5e07974f4c5aaa3c19b17c6a696c9d7'
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/semanticDiagnostics/cache/3f935796e5e07974f4c5aaa3c19b17c6a696c9d7'
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: [34mgenerated declarations[39m for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-request.ts'
rpt2: [34mtranspiling[39m 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-channel.ts'
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/code/cache/a99240fa4104c2e16f94ce88fc1379c6ca921a1f'
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/syntacticDiagnostics/cache/a99240fa4104c2e16f94ce88fc1379c6ca921a1f'
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/semanticDiagnostics/cache/a99240fa4104c2e16f94ce88fc1379c6ca921a1f'
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: [34mgenerated declarations[39m for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-channel.ts'
rpt2: [34mtranspiling[39m 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/preferences-abstractions/use-pref-value.ts'
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/code/cache/2782e42cd9233d011535cbf67546ba1e84e8e99d'
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/syntacticDiagnostics/cache/2782e42cd9233d011535cbf67546ba1e84e8e99d'
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/semanticDiagnostics/cache/2782e42cd9233d011535cbf67546ba1e84e8e99d'
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: [34mgenerated declarations[39m for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/preferences-abstractions/use-pref-value.ts'
rpt2: [34mtranspiling[39m 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-request.model.ts'
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/code/cache/726b751bba7e02d385477aafaf0e9a81fa917bdf'
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/syntacticDiagnostics/cache/726b751bba7e02d385477aafaf0e9a81fa917bdf'
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/semanticDiagnostics/cache/726b751bba7e02d385477aafaf0e9a81fa917bdf'
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: [34mgenerated declarations[39m for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-request.model.ts'
rpt2: [34mtranspiling[39m 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/preferences-abstractions/use-title.ts'
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/code/cache/91b4104bba25c3eaa9e1df3d0c0a905292e71791'
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/syntacticDiagnostics/cache/91b4104bba25c3eaa9e1df3d0c0a905292e71791'
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/semanticDiagnostics/cache/91b4104bba25c3eaa9e1df3d0c0a905292e71791'
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: [34mgenerated declarations[39m for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/preferences-abstractions/use-title.ts'
rpt2: [34mdependency[39m 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/routes/prop-types.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/routes/auth-route.tsx'
rpt2: [34mresolving[39m './prop-types' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/routes/auth-route.tsx'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/routes/prop-types.ts'
rpt2: [34mdependency[39m 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/routes/prop-types.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/routes/un-auth-route.tsx'
rpt2: [34mresolving[39m './prop-types' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/routes/un-auth-route.tsx'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/routes/prop-types.ts'
rpt2: [34mtranspiling[39m 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/routes/prop-types.ts'
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/code/cache/49ca371f1a676f03b297ef127d8de23d4c93de53'
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/syntacticDiagnostics/cache/49ca371f1a676f03b297ef127d8de23d4c93de53'
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/semanticDiagnostics/cache/49ca371f1a676f03b297ef127d8de23d4c93de53'
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: [34mgenerated declarations[39m for 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/routes/prop-types.ts'
rpt2: [34mdependency [39m 'path / to / project / telestion-client / packs / telestion-client-core / src / hooks / Stores / index.ts')
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-broadcast.ts'
rpt2: [34mresolving[39m '../../stores' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-broadcast.ts'
rpt2: إلى 'path / to / project / telestion-client / packs / telestion-client-core / src / hooks / store / index.ts'
rpt2: [34mdependency [39m 'path / to / project / telestion-client / packs / telestion-client-core / src / hooks / Stores / index.ts')
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-request.ts'
rpt2: [34mresolving[39m '../../stores' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-request.ts'
rpt2: إلى 'path / to / project / telestion-client / packs / telestion-client-core / src / hooks / store / index.ts'
rpt2: [34mdependency [39m 'path / to / project / telestion-client / packs / telestion-client-core / src / hooks / Stores / index.ts')
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-channel.ts'
rpt2: [34mresolving[39m '../../stores' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-channel.ts'
rpt2: إلى 'path / to / project / telestion-client / packs / telestion-client-core / src / hooks / store / index.ts'
rpt2: [34mdependency [39m 'path / to / project / telestion-client / packs / telestion-client-core / src / hooks / Stores / index.ts')
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/preferences-abstractions/use-pref-value.ts'
rpt2: [34mresolving[39m '../../stores' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/preferences-abstractions/use-pref-value.ts'
rpt2: إلى 'path / to / project / telestion-client / packs / telestion-client-core / src / hooks / store / index.ts'
rpt2: [34mdependency[39m 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/routes/un-auth-route.tsx'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/routes/index.ts'
rpt2: [34mresolving[39m './un-auth-route' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/routes/index.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/routes/un-auth-route.tsx'
rpt2: [34mdependency[39m 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/routes/auth-route.tsx'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/routes/index.ts'
rpt2: [34mresolving[39m './auth-route' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/routes/index.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/routes/auth-route.tsx'
rpt2: [34mdependency[39m 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/auth/fake-auth.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/auth/index.ts'
rpt2: [34mresolving[39m './fake-auth' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/auth/index.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/auth/fake-auth.ts'
rpt2: [34mdependency[39m 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-channel.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-channel-latest.ts'
rpt2: [34mresolving[39m './use-channel' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-channel-latest.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-channel.ts'
rpt2: [34mdependency[39m 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/preferences-abstractions/use-pref-value.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/preferences-abstractions/use-title.ts'
rpt2: [34mresolving[39m './use-pref-value' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/preferences-abstractions/use-title.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/preferences-abstractions/use-pref-value.ts'
rpt2: [34mtranspiling[39m 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/auth/fake-auth.ts'
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/code/cache/e5adf21fcb3c59c409f20f52e36799628a5eb29e'
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/syntacticDiagnostics/cache/e5adf21fcb3c59c409f20f52e36799628a5eb29e'
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/semanticDiagnostics/cache/e5adf21fcb3c59c409f20f52e36799628a5eb29e'
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: [34mgenerated declarations[39m for 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/auth/fake-auth.ts'
rpt2: [34mdependency[39m 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/lib/is-valid-child.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/lib/index.ts'
rpt2: [34mresolving[39m './is-valid-child' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/lib/index.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/lib/is-valid-child.ts'
rpt2: [34mdependency[39m 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/lib/parse-routing.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/lib/index.ts'
rpt2: [34mresolving[39m './parse-routing' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/lib/index.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/lib/parse-routing.ts'
rpt2: [34mtranspiling[39m 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/lib/is-valid-child.ts'
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/code/cache/416ec387f9f91866b2a132adbf14d11736de957f'
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/syntacticDiagnostics/cache/416ec387f9f91866b2a132adbf14d11736de957f'
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/semanticDiagnostics/cache/416ec387f9f91866b2a132adbf14d11736de957f'
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: [34mgenerated declarations[39m for 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/lib/is-valid-child.ts'
rpt2: [34mtranspiling[39m 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/lib/parse-routing.ts'
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/code/cache/e53e66d7e3b90883c5e927ecafd89593052e9a26'
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/syntacticDiagnostics/cache/e53e66d7e3b90883c5e927ecafd89593052e9a26'
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: cache: 'path/to/project/telestion-client/packages/telestion-client-core/node_modules/.cache/rollup-plugin-typescript2/rpt2_5fa92ddc61ca6feb66e3ed3d4c2eede87eadbe42/semanticDiagnostics/cache/e53e66d7e3b90883c5e927ecafd89593052e9a26'
rpt2: [إصابة ذاكرة التخزين المؤقت 32 م [39 م
rpt2: [34mgenerated declarations[39m for 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/lib/parse-routing.ts'
rpt2: [34mdependency [39m 'path / to / project / telestion-client / packs / telestion-client-core / src / lib / logger.ts')
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/auth/fake-auth.ts'
rpt2: [34mresolving[39m '../logger' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/auth/fake-auth.ts'
rpt2: إلى "المسار / إلى / المشروع / العميل التليفزيوني / الحزم / telestion-client-core / src / lib / logger.ts"
rpt2: [34mdependency[39m 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/core-utils.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/lib/is-valid-child.ts'
rpt2: [34mresolving[39m '../../../lib/core-utils' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/lib/is-valid-child.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/core-utils.ts'
rpt2: [34mdependency[39m 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/core-utils.ts'
rpt2: imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/lib/parse-routing.ts'
rpt2: [34mresolving[39m '../../../lib/core-utils' imported by 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/lib/parse-routing.ts'
rpt2: to 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/core-utils.ts'
rpt2: generating target 1
rpt2: [34mrolling caches[39m
rpt2: generating missed declarations for 'path/to/project/telestion-client/packages/telestion-client-core/src/components/storybook/title-user.tsx'
rpt2: generating missed declarations for 'path/to/project/telestion-client/packages/telestion-client-core/typings.d.ts'
rpt2: [34memitting declarations[39m for 'path/to/project/telestion-client/packages/telestion-client-core/src/index.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/index.d.ts'
rpt2: [34memitting declarations[39m for 'path/to/project/telestion-client/packages/telestion-client-core/src/components/index.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/components/index.d.ts'
rpt2: [34memitting declarations[39m for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/index.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/hooks/index.d.ts'
rpt2: [34memitting declarations[39m for 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/index.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/lib/index.d.ts'
rpt2: [34memitting declarations[39m for 'path/to/project/telestion-client/packages/telestion-client-core/src/components/telestion-client.tsx' to 'path/to/project/telestion-client/packages/telestion-client-core/types/components/telestion-client.d.ts'
rpt2: [34memitting declarations[39m for 'path/to/project/telestion-client/packages/telestion-client-core/src/components/preferences/index.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/components/preferences/index.d.ts'
rpt2: [34memitting declarations[39m for 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/index.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/components/pages/index.d.ts'
rpt2: [34memitting declarations[39m for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/index.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/hooks/abstractions/index.d.ts'
rpt2: [34memitting declarations[39m for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/index.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/hooks/stores/index.d.ts'
rpt2: [34memitting declarations[39m for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/use-logger.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/hooks/use-logger.d.ts'
rpt2: [34memitting declarations[39m for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/managers/index.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/hooks/managers/index.d.ts'
rpt2: [34memitting declarations[39m for 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/logger.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/lib/logger.d.ts'
rpt2: [34memitting declarations[39m for 'path/to/project/telestion-client/packages/telestion-client-core/src/components/preferences/preferences.tsx' to 'path/to/project/telestion-client/packages/telestion-client-core/types/components/preferences/preferences.d.ts'
rpt2: [34memitting declarations[39m for 'path/to/project/telestion-client/packages/telestion-client-core/src/components/preferences/variable.tsx' to 'path/to/project/telestion-client/packages/telestion-client-core/types/components/preferences/variable.d.ts'
rpt2: [34memitting declarations[39m for 'path/to/project/telestion-client/packages/telestion-client-core/src/components/preferences/group.tsx' to 'path/to/project/telestion-client/packages/telestion-client-core/types/components/preferences/group.d.ts'
rpt2: [34memitting declarations[39m for 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/pages.tsx' to 'path/to/project/telestion-client/packages/telestion-client-core/types/components/pages/pages.d.ts'
rpt2: [34memitting declarations[39m for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/index.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/hooks/abstractions/event-bus-abstractions/index.d.ts'
rpt2: [34memitting declarations[39m for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-auth.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/hooks/stores/use-auth.d.ts'
rpt2: [34memitting declarations[39m for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-notifications.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/hooks/stores/use-notifications.d.ts'
rpt2: [34memitting declarations[39m for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-preferences.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/hooks/stores/use-preferences.d.ts'
rpt2: [34memitting declarations[39m for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/preferences-abstractions/index.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/hooks/abstractions/preferences-abstractions/index.d.ts'
rpt2: [34memitting declarations[39m for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-event-bus.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/hooks/stores/use-event-bus.d.ts'
rpt2: [34memitting declarations[39m for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-preferences.model.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/hooks/stores/use-preferences.model.d.ts'
rpt2: [34memitting declarations[39m for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-notification.model.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/hooks/stores/use-notification.model.d.ts'
rpt2: [34memitting declarations[39m for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-event-bus.model.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/hooks/stores/use-event-bus.model.d.ts'
rpt2: [34memitting declarations[39m for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-auth.model.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/hooks/stores/use-auth.model.d.ts'
rpt2: [34memitting declarations[39m for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/managers/use-event-bus-manager.model.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/hooks/managers/use-event-bus-manager.model.d.ts'
rpt2: [34memitting declarations[39m for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/managers/use-event-bus-manager.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/hooks/managers/use-event-bus-manager.d.ts'
rpt2: [34memitting declarations[39m for 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/routes/auth-route.tsx' to 'path/to/project/telestion-client/packages/telestion-client-core/types/components/pages/routes/auth-route.d.ts'
rpt2: [34memitting declarations[39m for 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/routes/un-auth-route.tsx' to 'path/to/project/telestion-client/packages/telestion-client-core/types/components/pages/routes/un-auth-route.d.ts'
rpt2: [34memitting declarations[39m for 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/auth/index.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/lib/auth/index.d.ts'
rpt2: [34memitting declarations[39m for 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/core-utils.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/lib/core-utils.d.ts'
rpt2: [34memitting declarations[39m for 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/routes/index.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/components/pages/routes/index.d.ts'
rpt2: [34memitting declarations[39m for 'path/to/project/telestion-client/packages/telestion-client-core/src/components/preferences/group-context.tsx' to 'path/to/project/telestion-client/packages/telestion-client-core/types/components/preferences/group-context.d.ts'
rpt2: [34memitting declarations[39m for 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/lib/index.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/components/pages/lib/index.d.ts'
rpt2: [34memitting declarations[39m for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-channel-latest.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/hooks/abstractions/event-bus-abstractions/use-channel-latest.d.ts'
rpt2: [34memitting declarations[39m for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-broadcast.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/hooks/abstractions/event-bus-abstractions/use-broadcast.d.ts'
rpt2: [34memitting declarations[39m for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-request.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/hooks/abstractions/event-bus-abstractions/use-request.d.ts'
rpt2: [34memitting declarations[39m for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-channel.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/hooks/abstractions/event-bus-abstractions/use-channel.d.ts'
rpt2: [34memitting declarations[39m for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/preferences-abstractions/use-pref-value.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/hooks/abstractions/preferences-abstractions/use-pref-value.d.ts'
rpt2: [34memitting declarations[39m for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-request.model.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/hooks/abstractions/event-bus-abstractions/use-request.model.d.ts'
rpt2: [34memitting declarations[39m for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/preferences-abstractions/use-title.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/hooks/abstractions/preferences-abstractions/use-title.d.ts'
rpt2: [34memitting declarations[39m for 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/routes/prop-types.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/components/pages/routes/prop-types.d.ts'
rpt2: [34memitting declarations[39m for 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/auth/fake-auth.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/lib/auth/fake-auth.d.ts'
rpt2: [34memitting declarations[39m for 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/lib/is-valid-child.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/components/pages/lib/is-valid-child.d.ts'
rpt2: [34memitting declarations[39m for 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/lib/parse-routing.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/components/pages/lib/parse-routing.d.ts'
rpt2: [34memitting declarations[39m for 'path/to/project/telestion-client/packages/telestion-client-core/src/components/storybook/title-user.tsx' to 'path/to/project/telestion-client/packages/telestion-client-core/types/components/storybook/title-user.d.ts'
rpt2: generating target 2
rpt2: [34mrolling caches[39m
rpt2: generating missed declarations for 'path/to/project/telestion-client/packages/telestion-client-core/typings.d.ts'
rpt2: [34memitting declarations[39m for 'path/to/project/telestion-client/packages/telestion-client-core/src/index.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/index.d.ts'
rpt2: [34memitting declarations[39m for 'path/to/project/telestion-client/packages/telestion-client-core/src/components/index.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/components/index.d.ts'
rpt2: [34memitting declarations[39m for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/index.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/hooks/index.d.ts'
rpt2: [34memitting declarations[39m for 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/index.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/lib/index.d.ts'
rpt2: [34memitting declarations[39m for 'path/to/project/telestion-client/packages/telestion-client-core/src/components/telestion-client.tsx' to 'path/to/project/telestion-client/packages/telestion-client-core/types/components/telestion-client.d.ts'
rpt2: [34memitting declarations[39m for 'path/to/project/telestion-client/packages/telestion-client-core/src/components/preferences/index.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/components/preferences/index.d.ts'
rpt2: [34memitting declarations[39m for 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/index.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/components/pages/index.d.ts'
rpt2: [34memitting declarations[39m for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/index.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/hooks/abstractions/index.d.ts'
rpt2: [34memitting declarations[39m for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/index.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/hooks/stores/index.d.ts'
rpt2: [34memitting declarations[39m for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/use-logger.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/hooks/use-logger.d.ts'
rpt2: [34memitting declarations[39m for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/managers/index.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/hooks/managers/index.d.ts'
rpt2: [34memitting declarations[39m for 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/logger.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/lib/logger.d.ts'
rpt2: [34memitting declarations[39m for 'path/to/project/telestion-client/packages/telestion-client-core/src/components/preferences/preferences.tsx' to 'path/to/project/telestion-client/packages/telestion-client-core/types/components/preferences/preferences.d.ts'
rpt2: [34memitting declarations[39m for 'path/to/project/telestion-client/packages/telestion-client-core/src/components/preferences/variable.tsx' to 'path/to/project/telestion-client/packages/telestion-client-core/types/components/preferences/variable.d.ts'
rpt2: [34memitting declarations[39m for 'path/to/project/telestion-client/packages/telestion-client-core/src/components/preferences/group.tsx' to 'path/to/project/telestion-client/packages/telestion-client-core/types/components/preferences/group.d.ts'
rpt2: [34memitting declarations[39m for 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/pages.tsx' to 'path/to/project/telestion-client/packages/telestion-client-core/types/components/pages/pages.d.ts'
rpt2: [34memitting declarations[39m for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/index.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/hooks/abstractions/event-bus-abstractions/index.d.ts'
rpt2: [34memitting declarations[39m for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-auth.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/hooks/stores/use-auth.d.ts'
rpt2: [34memitting declarations[39m for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-notifications.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/hooks/stores/use-notifications.d.ts'
rpt2: [34memitting declarations[39m for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-preferences.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/hooks/stores/use-preferences.d.ts'
rpt2: [34memitting declarations[39m for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/preferences-abstractions/index.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/hooks/abstractions/preferences-abstractions/index.d.ts'
rpt2: [34memitting declarations[39m for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-event-bus.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/hooks/stores/use-event-bus.d.ts'
rpt2: [34memitting declarations[39m for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-preferences.model.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/hooks/stores/use-preferences.model.d.ts'
rpt2: [34memitting declarations[39m for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-notification.model.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/hooks/stores/use-notification.model.d.ts'
rpt2: [34memitting declarations[39m for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-event-bus.model.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/hooks/stores/use-event-bus.model.d.ts'
rpt2: [34memitting declarations[39m for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/stores/use-auth.model.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/hooks/stores/use-auth.model.d.ts'
rpt2: [34memitting declarations[39m for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/managers/use-event-bus-manager.model.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/hooks/managers/use-event-bus-manager.model.d.ts'
rpt2: [34memitting declarations[39m for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/managers/use-event-bus-manager.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/hooks/managers/use-event-bus-manager.d.ts'
rpt2: [34memitting declarations[39m for 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/routes/auth-route.tsx' to 'path/to/project/telestion-client/packages/telestion-client-core/types/components/pages/routes/auth-route.d.ts'
rpt2: [34memitting declarations[39m for 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/routes/un-auth-route.tsx' to 'path/to/project/telestion-client/packages/telestion-client-core/types/components/pages/routes/un-auth-route.d.ts'
rpt2: [34memitting declarations[39m for 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/auth/index.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/lib/auth/index.d.ts'
rpt2: [34memitting declarations[39m for 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/core-utils.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/lib/core-utils.d.ts'
rpt2: [34memitting declarations[39m for 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/routes/index.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/components/pages/routes/index.d.ts'
rpt2: [34memitting declarations[39m for 'path/to/project/telestion-client/packages/telestion-client-core/src/components/preferences/group-context.tsx' to 'path/to/project/telestion-client/packages/telestion-client-core/types/components/preferences/group-context.d.ts'
rpt2: [34memitting declarations[39m for 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/lib/index.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/components/pages/lib/index.d.ts'
rpt2: [34memitting declarations[39m for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-channel-latest.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/hooks/abstractions/event-bus-abstractions/use-channel-latest.d.ts'
rpt2: [34memitting declarations[39m for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-broadcast.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/hooks/abstractions/event-bus-abstractions/use-broadcast.d.ts'
rpt2: [34memitting declarations[39m for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-request.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/hooks/abstractions/event-bus-abstractions/use-request.d.ts'
rpt2: [34memitting declarations[39m for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-channel.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/hooks/abstractions/event-bus-abstractions/use-channel.d.ts'
rpt2: [34memitting declarations[39m for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/preferences-abstractions/use-pref-value.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/hooks/abstractions/preferences-abstractions/use-pref-value.d.ts'
rpt2: [34memitting declarations[39m for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/event-bus-abstractions/use-request.model.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/hooks/abstractions/event-bus-abstractions/use-request.model.d.ts'
rpt2: [34memitting declarations[39m for 'path/to/project/telestion-client/packages/telestion-client-core/src/hooks/abstractions/preferences-abstractions/use-title.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/hooks/abstractions/preferences-abstractions/use-title.d.ts'
rpt2: [34memitting declarations[39m for 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/routes/prop-types.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/components/pages/routes/prop-types.d.ts'
rpt2: [34memitting declarations[39m for 'path/to/project/telestion-client/packages/telestion-client-core/src/lib/auth/fake-auth.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/lib/auth/fake-auth.d.ts'
rpt2: [34memitting declarations[39m for 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/lib/is-valid-child.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/components/pages/lib/is-valid-child.d.ts'
rpt2: [34memitting declarations[39m for 'path/to/project/telestion-client/packages/telestion-client-core/src/components/pages/lib/parse-routing.ts' to 'path/to/project/telestion-client/packages/telestion-client-core/types/components/pages/lib/parse-routing.d.ts'
rpt2: [34memitting declarations[39m for 'path/to/project/telestion-client/packages/telestion-client-core/src/components/storybook/title-user.tsx' to 'path/to/project/telestion-client/packages/telestion-client-core/types/components/storybook/title-user.d.ts'
created build/index.js, build/index.es.js in 3s

path / to / project / telestion-client / bundle / telestion-client-core / types / index.d.ts → build / index.d.ts ...
أنشأ build / index.d.ts في 121 مللي ثانية
""

الأدوات المثبتة / المستخدمة:

| أداة | الإصدار |
| --- | --- |
| node --version | v14.15.4 |
| npm --version | v6.14.11 |
| rollup --version | v2.39.0 |

هل كانت هذه الصفحة مفيدة؟
0 / 5 - 0 التقييمات