Рефакторинг. Переход на typescript

This commit is contained in:
Maxim
2026-06-11 08:57:47 +03:00
parent b4649f61ca
commit ea972129cb
25 changed files with 1113 additions and 299 deletions

View File

@@ -0,0 +1,16 @@
{
"compilerOptions": {
"target": "ES2020",
"module": "ES2020",
"lib": ["ES2020", "DOM"],
"outDir": "./dist",
"rootDir": "./js",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"moduleResolution": "bundler"
},
"include": ["js/**/*"],
"exclude": ["node_modules", "dist"]
}