- Convert all @bytelyst/* file: refs to semver ^0.1.0 (backend, web, mobile) - Remove sibling common-plat workspace references from pnpm-workspace.yaml - Add .npmrc and .npmrc.docker for local Gitea registry - Rewrite backend/web Dockerfiles: pnpm + BuildKit secret mount + corp proxy - Fix backend tsconfig.json: remove explicit lib to resolve fetch Response types - Verified: host-side pnpm install, backend tests (86 pass), backend+web Docker builds
22 lines
508 B
JSON
22 lines
508 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "NodeNext",
|
|
"moduleResolution": "NodeNext",
|
|
|
|
"outDir": "dist",
|
|
"rootDir": "src",
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"preserveSymlinks": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"resolveJsonModule": true,
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"sourceMap": true
|
|
},
|
|
"include": ["src/**/*.ts"],
|
|
"exclude": ["dist", "node_modules", "src/**/*.test.ts"]
|
|
}
|