mediago-dev--mediago
85c0ff01e8
- Move SDK to packages/core-sdk - Remove npm/ directory (14 platform packages no longer needed) - Remove .bin/ directory (third-party binaries, will download from GitHub) - Remove pnpm-workspace.yaml, pnpm-lock.yaml - Remove npm.ts build script and templates - Simplify gulpfile.ts (remove npm build/publish tasks) - Rename package to @mediago/core-build Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
21 行
470 B
JSON
21 行
470 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"lib": ["es2023"],
|
|
"moduleDetection": "force",
|
|
"module": "preserve",
|
|
"moduleResolution": "bundler",
|
|
"resolveJsonModule": true,
|
|
"types": ["node"],
|
|
"strict": true,
|
|
"noUnusedLocals": true,
|
|
"declaration": true,
|
|
"emitDeclarationOnly": true,
|
|
"esModuleInterop": true,
|
|
"isolatedModules": true,
|
|
"verbatimModuleSyntax": true,
|
|
"skipLibCheck": true
|
|
},
|
|
"include": ["src"]
|
|
}
|