enso/app/ide-desktop/lib/client/tsconfig.json
Paweł Grabarz af050f522b
[GUI2] Module contents editing and synchronization (#7938)
Added bidirectional synchronization of module edits with language server. All document edits made by any of the Yjs peers are sent to language server to apply to the file. Any local file changes cause reload, which is synchronized back to Yjs by finding a diff.
2023-10-02 12:01:03 +00:00

21 lines
339 B
JSON

{
"extends": "../../tsconfig.json",
"compilerOptions": {
"baseUrl": "./src",
"esModuleInterop": true
},
"include": [
".",
"../content",
"../dashboard",
"../types",
"../../utils.ts",
"../../../../build.json"
],
"references": [
{
"path": "../../../gui2/tsconfig.server.json"
}
]
}