Skip to content

Commit

Permalink
i18n: Configure extensions & nodemon
Browse files Browse the repository at this point in the history
  • Loading branch information
eliandoran committed Sep 8, 2024
1 parent 69f9457 commit a9e6c88
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@
"i18n-ally.sourceLanguage": "en",
"i18n-ally.keystyle": "nested",
"i18n-ally.localesPaths": [
"./src/public/translations"
"./src/public/translations",
"./translations"
],
"[jsonc]": {
"editor.defaultFormatter": "vscode.json-language-features"
Expand Down
5 changes: 4 additions & 1 deletion nodemon.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,10 @@
"ignore": [".git", "node_modules/**/node_modules", "src/public/"],
"verbose": false,
"exec": "tsx",
"watch": ["src/"],
"watch": [
"src/",
"translations/"
],
"signal": "SIGTERM",
"env": {
"NODE_ENV": "development"
Expand Down

0 comments on commit a9e6c88

Please sign in to comment.