- pgSchema "mesh" with 4 tables isolating the peer mesh domain - Enums: visibility, transport, tier, role - audit_log is metadata-only (E2E encryption enforced at broker/client) - Cascade on mesh delete, soft-delete via archivedAt/revokedAt Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
22 lines
456 B
JSON
22 lines
456 B
JSON
{
|
|
"extends": "@turbostarter/tsconfig/base.json",
|
|
"compilerOptions": {
|
|
"lib": ["es2022", "dom", "dom.iterable"],
|
|
"jsx": "preserve",
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"~/*": ["./src/*"]
|
|
},
|
|
"plugins": [{ "name": "next" }],
|
|
"module": "esnext"
|
|
},
|
|
"include": [
|
|
"../../packages/ui/shared/src/typings/*.d.ts",
|
|
"next-env.d.ts",
|
|
"**/*.ts",
|
|
"**/*.tsx",
|
|
".next/types/**/*.ts"
|
|
],
|
|
"exclude": ["node_modules"]
|
|
}
|