updated to using types from violentmonkey instead of my handrolled ones
This commit is contained in:
parent
f25cbae9e2
commit
7dd96ac108
6 changed files with 201 additions and 416 deletions
|
@ -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"]
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue