marketing/web/tsconfig.json
Natalie c847cdc167 feat: stub extraction of marketing (outreach) to dedicated app (Nest+PWA+MCP+DB) modeled on prospector
- Full skeleton: backend (outreach module with settings/usage/batch + pure templating + dto), health/auth, web PWA (compose/review/settings/usage), mcp stub, migrations, docs (MARKETING.md + MIGRATION_FROM_LP.md), CLAUDE, STANDARDS, run/scripts.
- Design: scope from lp.live api/entities/outreach-* + features/outreach-templating + surfaces/my/outreach.ts + client-search + my/frontend Outreach* pages + related mcp
- Follows exact prospector extraction to enable focused dev + cutover/proxies from lp.live
- Verified via ls, file reads, structure parity to prospector/finances stub
2026-06-29 16:13:18 -04:00

16 lines
385 B
JSON

{
"compilerOptions": {
"target": "ES2022",
"lib": ["ES2022", "DOM", "DOM.Iterable"],
"module": "ESNext",
"moduleResolution": "bundler",
"strict": true,
"jsx": "react-jsx",
"skipLibCheck": true,
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true
},
"include": ["src"],
"references": [{ "path": "./tsconfig.node.json" }]
}