initial commit

This commit is contained in:
Karli
2025-09-18 19:02:11 +03:00
commit f8a7da141f
55 changed files with 8461 additions and 0 deletions

34
tsconfig.json Normal file
View File

@@ -0,0 +1,34 @@
{
"compilerOptions": {
"outDir": "./dist",
"module": "esnext",
"target": "es6",
"lib": ["esnext", "dom"],
"sourceMap": true,
"allowJs": true,
"jsx": "react",
"moduleResolution": "node",
"noImplicitReturns": true,
"noImplicitThis": true,
"noImplicitAny": true,
"strictNullChecks": true,
"resolveJsonModule": true,
"baseUrl": "./",
"rootDir": "./src",
"typeRoots": [
"./src/@types",
"node_modules/@types"
],
"paths": {
"@/*": ["src/*"]
},
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"importsNotUsedAsValues": "remove",
"incremental": false,
"skipLibCheck": false,
"strict": true
},
"include": ["./src/**/*"],
"exclude": ["**/node_modules"]
}