restructured and simplified favicon

This commit is contained in:
Niki Wix Skaarup 2025-04-12 21:14:09 +02:00
parent 259ccfe851
commit 08c127f637
Signed by: nikiskaarup
GPG key ID: FC2F1B116F6E788C
28 changed files with 320 additions and 260 deletions

View file

@ -3,7 +3,7 @@
// Environment setup & latest features
"lib": [
"ESNext",
"DOM"
"DOM",
],
"target": "ESNext",
"module": "ESNext",
@ -23,6 +23,23 @@
// 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"
]
}