Initial control-plane protocol package

This commit is contained in:
Timothy J. Aveni
2026-06-17 22:47:56 -07:00
commit d8f0421d23
5 changed files with 2026 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
{
"compilerOptions": {
"target": "ES2022",
"module": "NodeNext",
"moduleResolution": "NodeNext",
"lib": ["ES2022"],
"strict": true,
"noEmit": true,
"allowImportingTsExtensions": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"skipLibCheck": true,
"resolveJsonModule": true,
"verbatimModuleSyntax": true,
"types": ["node"]
},
"include": ["src/**/*.ts"],
"exclude": ["node_modules", ".yarn", "dist"]
}