http-rpc
Version:
Inspired by JSON-RPC and gRPC, but works over HTTP: specifically it works with a browser over http protocol.
32 lines (25 loc) • 523 B
JSON
{
"compilerOptions": {
"target": "ES2019",
"module": "commonjs",
"moduleResolution": "node",
"esModuleInterop" : true,
"lib": ["ES2018"],
"allowSyntheticDefaultImports": true,
"strictBindCallApply": true,
"noImplicitThis": true,
"removeComments": false,
"outDir": ".",
"baseUrl": ".",
"paths": {
"*": ["node_modules/*"]
}
},
"include": [
"**/*.ts"
],
"exclude": [
"node_modules",
"webApp"
]
}