prototype 1.0

This commit is contained in:
2026-05-07 17:29:59 +03:00
parent fde574c7a0
commit 2f69ac14c5
291 changed files with 34857 additions and 5683 deletions

View File

@@ -1,10 +1,9 @@
{
"compilerOptions": {
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo",
"target": "es2023",
"target": "ES2023",
"lib": ["ES2023"],
"module": "esnext",
"types": ["node"],
"module": "ESNext",
"skipLibCheck": true,
/* Bundler mode */
@@ -15,10 +14,12 @@
"noEmit": true,
/* Linting */
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"erasableSyntaxOnly": true,
"noFallthroughCasesInSwitch": true
"noFallthroughCasesInSwitch": true,
"noUncheckedSideEffectImports": true
},
"include": ["vite.config.ts"]
}