client build update

This commit is contained in:
MeexReay 2024-12-22 01:29:44 +03:00
parent 8e007763bf
commit e194968af5
15 changed files with 2050 additions and 8 deletions

17
client/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": []
}