Add files via upload

This commit is contained in:
2024-07-17 14:39:04 +05:00
committed by GitHub
parent be0b64a3c6
commit 3751382bfc
10 changed files with 3280 additions and 0 deletions

81
tsconfig.json Normal file
View File

@@ -0,0 +1,81 @@
{
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"target": "es6",
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"incremental": true,
"baseUrl": "./",
"paths": {
"@/*": [
"/src"
],
"@redux/*": [
"./src/redux/*"
],
"@ui/*": [
"./src/ui/*"
],
"@components/*": [
"./src/components/*"
],
"@constants/*": [
"./src/constants/*"
],
"@enums/*": [
"./src/enums/*"
],
"@interfaces/*": [
"./src/interfaces/*"
],
"@typeGuards/*": [
"./src/typeGuards/*"
],
"@layouts/*": [
"./src/layouts/*"
],
"@pages/*": [
"./src/pages/*"
],
"@services/*": [
"./src/services/*"
],
"@hooks/*": [
"./src/hooks/*"
],
"@styles/*": [
"./src/styles/*"
],
"@utils/*": [
"./src/utils/*"
],
"@assets/*": [
"./src/assets/*"
]
}
},
"exclude": [
"node_modules",
".next",
".husky"
],
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx"
]
}