From b8178e35341ae82bea2dacbaba23536296efa1e8 Mon Sep 17 00:00:00 2001 From: imperosol Date: Thu, 20 Aug 2026 16:03:22 +0200 Subject: [PATCH] update doc in js-import-paths.md --- docs/howto/js-import-paths.md | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/docs/howto/js-import-paths.md b/docs/howto/js-import-paths.md index 6e8f8dcd..f77e7288 100644 --- a/docs/howto/js-import-paths.md +++ b/docs/howto/js-import-paths.md @@ -17,16 +17,14 @@ D'abord, il faut ajouter dans node via `package.json`: } ``` -Ensuite, pour faire fonctionne l'auto-complétion, il faut configurer `tsconfig.json`: +Ensuite, pour faire fonctionne l'auto-complétion, il faut configurer `tsconfig.bundled.json`: ```json { - "compilerOptions": { + // ... + "paths": { // ... - "paths": { - // ... - "#mon_app:*": ["./mon_app/static/bundled/*"] - } + "#mon_app:*": ["./mon_app/static/bundled/*"] } } ```