updated to using types from violentmonkey instead of my handrolled ones

This commit is contained in:
Niki Wix Skaarup 2025-05-03 00:34:29 +02:00
parent f25cbae9e2
commit 7dd96ac108
Signed by: nikiskaarup
GPG key ID: FC2F1B116F6E788C
6 changed files with 201 additions and 416 deletions

View file

@ -1,10 +1,7 @@
{
"compilerOptions": {
// Environment setup & latest features
"lib": [
"ESNext",
"DOM",
],
"lib": ["ESNext", "DOM", "ES6", "DOM.Iterable", "ScriptHost"],
"target": "ESNext",
"module": "ESNext",
"moduleDetection": "force",
@ -25,21 +22,11 @@
"noUnusedParameters": false,
"noPropertyAccessFromIndexSignature": false,
"paths": {
"@client/*": [
"./src/client/*"
],
"@server/*": [
"./src/server/*"
],
"@routes/*": [
"./src/routes/*"
],
"@static/*": [
"./src/static/*"
],
"@client/*": ["./src/client/*"],
"@server/*": ["./src/server/*"],
"@routes/*": ["./src/routes/*"],
"@static/*": ["./src/static/*"]
}
},
"exclude": [
"node_modules"
]
"exclude": ["node_modules"]
}