Initial commit

This commit is contained in:
Robert Nasarek 2026-06-25 09:11:23 +02:00
commit 05c65aad4d
155 changed files with 93617 additions and 0 deletions

15
jsconfig.json Normal file
View file

@ -0,0 +1,15 @@
{
"compilerOptions": {
"strict": true,
"module": "esnext",
"target": "es6",
"moduleResolution": "node",
"jsx": "preserve",
"esModuleInterop": true,
"allowJs": true,
"sourceMap": true,
"lib": ["es6", "dom"],
"rootDir": "viewer"
},
"exclude": ["node_modules"]
}