Vendored Augani/openreel-video (MIT) into services/editor and wired it to the MAM. Editor runs as its own container on port 47435. Library assets pull in via ?asset=<uuid>; render exports route back via POST /api/v1/upload/simple. Sidebar Editor link on every page; Edit button on every preview modal. See services/editor/INTEGRATION.md for the patch map.
31 lines
1,006 B
JSON
31 lines
1,006 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"lib": ["ES2022", "DOM", "DOM.Iterable"],
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"strict": true,
|
|
"strictNullChecks": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"skipLibCheck": true,
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"sourceMap": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"paths": {
|
|
"@openreel/core": ["./packages/core/src/index.ts"],
|
|
"@openreel/core/*": ["./packages/core/src/*"],
|
|
"@openreel/image-core": ["./packages/image-core/src/index.ts"],
|
|
"@openreel/image-core/*": ["./packages/image-core/src/*"],
|
|
"@openreel/ui": ["./packages/ui/src/index.ts"],
|
|
"@openreel/ui/*": ["./packages/ui/src/*"]
|
|
}
|
|
},
|
|
"exclude": ["node_modules", "dist", "build"]
|
|
}
|