Init call

This commit is contained in:
edsea
2025-07-18 02:16:18 +02:00
commit a65ccc4218
40 changed files with 100424 additions and 0 deletions

19
jsconfig.json Executable file
View File

@@ -0,0 +1,19 @@
{
"compilerOptions": {
"target": "es5",
"module": "esnext",
"baseUrl": "./",
"moduleResolution": "node",
"paths": {
"@/*": [
"src/*"
]
},
"lib": [
"esnext",
"dom",
"dom.iterable",
"scripthost"
]
}
}