move client to root

This commit is contained in:
MeexReay 2025-03-01 16:12:53 +03:00
parent 348a8d6ae3
commit 20ecd5dc2d
8 changed files with 0 additions and 0 deletions

17
tsconfig.json Normal file
View file

@ -0,0 +1,17 @@
{
"compilerOptions": {
"target": "ES6",
"module": "amd",
"outDir": "./dest",
"rootDir": "./src",
"removeComments": true,
"strict": false,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"lib": ["DOM", "ES2016"],
"skipLibCheck": true
},
"include": ["src/**/*"],
"exclude": []
}