restructured and simplified favicon

This commit is contained in:
Niki Wix Skaarup 2025-04-12 20:37:40 +02:00
parent 44d5fafc66
commit 5179d87cda
Signed by: nikiskaarup
GPG key ID: FC2F1B116F6E788C
20 changed files with 388 additions and 333 deletions

View file

@ -1,17 +1,15 @@
{
"compilerOptions": {
// Enable latest features
"lib": ["ESNext"],
// Environment setup & latest features
"lib": [
"ESNext",
"DOM",
],
"target": "ESNext",
"module": "ESNext",
"moduleDetection": "force",
"jsx": "react-jsx",
"allowJs": true,
"checkJs": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"sourceMap": true,
// Bundler mode
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
@ -21,13 +19,27 @@
"strict": true,
"skipLibCheck": true,
"noFallthroughCasesInSwitch": true,
"noUncheckedIndexedAccess": true,
// Some stricter flags (disabled by default)
"noUnusedLocals": false,
"noUnusedParameters": false,
"noPropertyAccessFromIndexSignature": false
}
// Path aliases are handled by https://kit.svelte.dev/docs/configuration#alias
//
// If you want to overwrite includes/excludes, make sure to copy over the relevant includes/excludes
// from the referenced tsconfig.json - TypeScript does not merge them in
"noPropertyAccessFromIndexSignature": false,
"paths": {
"@client/*": [
"./src/client/*"
],
"@server/*": [
"./src/server/*"
],
"@routes/*": [
"./src/routes/*"
],
"@static/*": [
"./src/static/*"
],
}
},
"exclude": [
"node_modules"
]
}