enso/app/ydoc-server-nodejs/tsconfig.json
Paweł Grabarz b286adaae4
Split ydoc server into separate module (#10735)
# Important Notes
The command to run the gui dev environment has been changed. Invoking the old command will print a message about that.
From now on, use `pnpm dev:gui2` in repository root.
2024-08-08 12:12:05 +00:00

14 lines
289 B
JSON

{
"extends": "../tsconfig.json",
"include": ["src/**/*.ts"],
"references": [{ "path": "../ydoc-server" }],
"compilerOptions": {
"composite": true,
"noEmit": false,
"rootDir": "src",
"outDir": "dist",
"types": ["node"],
"paths": { "#/*": ["./src/*"] }
}
}