go-learn/packages/ai/tsconfig.json
sab.code.lab 1c85091186 chore: восстановление репозитория из снапшота v0.3.1
Прежняя git-история утрачена при переносе проекта на машину владельца
(снапшот без .git). Хэши коммитов в docs/reports/* относятся к утраченной
истории.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-08-07 09:34:02 +02:00

16 lines
794 B
JSON
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"outDir": "dist",
"rootDir": "src",
"lib": ["ES2022"],
"types": ["node"]
},
// Намеренно БЕЗ references на ../core: гейт typecheck — `tsc -b --noEmit`,
// а TS 5.9 в build-режиме с --noEmit отклоняет любую цепочку project
// references с чистого состояния (TS6310 "may not disable emit" — CLI-флаг
// распространяется на referenced-проект). Импорт @go-learn/core резолвится
// через workspace-симлинк (main: src/index.ts) — типы видны и так.
// Корневой tsconfig.json по-прежнему ссылается на packages/ai.
"include": ["src"]
}