chore(frontend): changed source code to src folder from root

This commit is contained in:
akhilmhdh
2023-01-16 00:26:41 +05:30
parent c563548a1c
commit 63e9d83ba4
193 changed files with 280 additions and 33 deletions

View File

@@ -2,11 +2,12 @@
"compilerOptions": {
"baseUrl": ".",
"paths": {
"~/components/*": ["components/*"],
"~/hooks/*": ["hooks/*"],
"~/utilities/*": ["components/utilities/*"],
"~/*": ["const"],
"~/pages/*": ["pages/*"]
"~/components/*": ["./src/components/*"],
"~/hooks/*": ["./src/hooks/*"],
"~/utilities/*": ["./src/components/utilities/*"],
"~/*": ["./src/const"],
"~/pages/*": ["./src/pages/*"],
"@app/*": ["./src/*"]
},
"target": "ESNext",
"lib": ["dom", "dom.iterable", "esnext"],
@@ -24,6 +25,6 @@
"jsx": "preserve",
"incremental": true
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"],
"include": ["next-env.d.ts", "./src/**/*.ts", "./src/**/*.tsx"],
"exclude": ["node_modules"]
}