restructured and simplified favicon

This commit is contained in:
Niki Wix Skaarup 2025-04-12 20:25:38 +02:00
parent 8986f6533e
commit 13fdf05a91
Signed by: nikiskaarup
GPG key ID: FC2F1B116F6E788C
18 changed files with 117 additions and 60 deletions

View file

@ -23,7 +23,21 @@
// Some stricter flags (disabled by default)
"noUnusedLocals": false,
"noUnusedParameters": false,
"noPropertyAccessFromIndexSignature": false
"noPropertyAccessFromIndexSignature": false,
"paths": {
"@client/*": [
"./src/client/*"
],
"@server/*": [
"./src/server/*"
],
"@routes/*": [
"./src/routes/*"
],
"@static/*": [
"./src/static/*"
],
}
},
"exclude": [
"node_modules"