mirror of
https://github.com/nexu-io/open-design.git
synced 2026-06-01 03:14:35 +07:00
* feat(pack): add mac packaged runtime control plane * feat(pack): harden mac packaged runtime lifecycle Keep packaged state namespace-scoped, make daemon paths explicit through sidecar launch env, and add conservative desktop identity/logging fallbacks for local mac package validation. * feat(pack): add mac beta release flow * fix(pack): generate mac update feed fallback * fix(pack): write portable beta checksums * fix(pack): make beta artifacts portable * fix(pack): clean up mac install visuals * fix(pack): address packaged runtime review feedback
18 lines
413 B
JSON
18 lines
413 B
JSON
{
|
|
"extends": "./tsconfig.json",
|
|
"compilerOptions": {
|
|
"allowJs": false,
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"lib": ["ES2024"],
|
|
"module": "NodeNext",
|
|
"moduleResolution": "NodeNext",
|
|
"noEmit": false,
|
|
"outDir": "dist",
|
|
"rootDir": ".",
|
|
"target": "ES2024",
|
|
"types": ["node"]
|
|
},
|
|
"include": ["sidecar/**/*.ts"],
|
|
"exclude": ["node_modules", ".next", "out"]
|
|
}
|