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/*"] } } ```