Merge commit '89269e4b71' into glitch-soc/merge-upstream

Conflicts:
- `tsconfig.json`:
  Upstream changed the config to properly process imports.
  Glitch-soc had previously already done so.
  Changed the config to better match upstream.
This commit is contained in:
Claire 2023-05-09 20:12:33 +02:00
commit 8b568755ad
17 changed files with 163 additions and 149 deletions

View file

@ -8,14 +8,17 @@
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"baseUrl": ".",
"baseUrl": "./",
"paths": {
"*": ["app/javascript/*"]
"*": ["app/javascript/*"],
"mastodon": ["app/javascript/mastodon"],
"mastodon/*": ["app/javascript/mastodon/*"]
}
},
"include": [
"app/javascript/mastodon",
"app/javascript/flavours/glitch",
"app/javascript/packs"
"app/javascript/packs",
"app/javascript/types",
"app/javascript/flavours/glitch"
]
}