Docker / build (push) Has been cancelled
Node в Docker не мог импортировать .ts из workspace-пакетов; exports переключены на dist, добавлен tsc build и сборка в Dockerfile. Co-authored-by: Cursor <cursoragent@cursor.com>
17 lines
367 B
JSON
17 lines
367 B
JSON
{
|
|
"extends": "../../tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"module": "NodeNext",
|
|
"moduleResolution": "NodeNext",
|
|
"target": "ES2022",
|
|
"outDir": "./dist",
|
|
"rootDir": "./src",
|
|
"noEmit": false,
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"verbatimModuleSyntax": false,
|
|
"types": ["node"]
|
|
},
|
|
"include": ["src/**/*.ts"]
|
|
}
|