Skip to content

Commit

Permalink
nit #10774
Browse files Browse the repository at this point in the history
  • Loading branch information
chrabyrd committed Apr 16, 2024
1 parent 601aea8 commit 9f0ca39
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion arches/install/arches-templates/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"skipLibCheck": true,
"baseUrl": "./{{ project_name }}/src/",
"baseUrl": "**/src/",
"paths": {
"@/*": [
"*.ts",
Expand Down
2 changes: 1 addition & 1 deletion arches/management/commands/updateproject.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ def update_to_v7_5(self):
def update_to_v7_6(self):
# ensure project has a `messages.pot` file
for dotfile in [
"nodemon.json", "tsconfig.json", ".babelrc", ".browserslistrc", "eslint.config.js", ".stylelintrc.json", "LICENSE", "MANIFEST.in", "pyproject.toml"
"nodemon.json", "tsconfig.json", ".babelrc", ".browserslistrc", "eslint.config.mjs", ".stylelintrc.json", "LICENSE", "MANIFEST.in", "pyproject.toml"
]:
if os.path.exists(os.path.join(settings.APP_ROOT, dotfile)):
print("Deleting {} from project sub-directory".format(dotfile))
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"skipLibCheck": true,
"baseUrl": "./arches/app/src/",
"baseUrl": "**/src/",
"paths": {
"@/*": [
"*.ts",
Expand Down

0 comments on commit 9f0ca39

Please sign in to comment.