restructured and simplified favicon
This commit is contained in:
parent
259ccfe851
commit
08c127f637
28 changed files with 320 additions and 260 deletions
|
@ -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"
|
||||
]
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue