commit a3a1dc28b1a5fb0b8ac65657456d5738e5219948 parent 6d53389b5e224f88a2fff116eb41682fdaf06c0d Author: Sergej Orlov <wladimirych@gmail.com> Date: Fri, 2 Jan 2026 20:38:42 +0100 config: add jsconfig.json file to help IDEs follow imports from root Fixes: #1393 Diffstat:
| A | jsconfig.json | | | 8 | ++++++++ |
1 file changed, 8 insertions(+), 0 deletions(-)
diff --git a/jsconfig.json b/jsconfig.json @@ -0,0 +1,8 @@ +{ + "compilerOptions": { + "baseUrl": ".", + "paths": { + "~/*": ["src/*"] + } + } +}
